Skip to content

Commit f795f84

Browse files
committed
fix bad code blocks in README
1 parent 47f7474 commit f795f84

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ When you upload events in a batch, some of them may succeed and some of them may
152152
Upload code (remember, Keen IO doesn't allow periods in property names):
153153
154154
.. code-block:: python
155+
155156
response = keen.add_events({
156157
"sign_ups": [
157158
{ "username": "nameuser1" },
@@ -166,6 +167,7 @@ Upload code (remember, Keen IO doesn't allow periods in property names):
166167
That code would result in the following API JSON response:
167168
168169
.. code-block:: javascript
170+
169171
{
170172
"sign_ups": [
171173
{"success": true},
@@ -180,6 +182,7 @@ That code would result in the following API JSON response:
180182
So in python, to check on the results of your batch, you'd have code like so:
181183
182184
.. code-block:: python
185+
183186
batch = {
184187
"sign_ups": [
185188
{ "username": "nameuser1" },
@@ -369,6 +372,11 @@ To run tests:
369372
Changelog
370373
---------
371374
375+
0.3.28
376+
``````
377+
378+
+ Fix incorrect README.
379+
372380
0.3.27
373381
``````
374382

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name="keen",
31-
version="0.3.27",
31+
version="0.3.28",
3232
description="Python Client for Keen IO",
3333
long_description=codecs.open(os.path.join('README.rst'), 'r', encoding='UTF-8').read(),
3434
author="Keen IO",

0 commit comments

Comments
 (0)