Skip to content

Commit

Permalink
Merge branch 'master' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
oczkers committed Oct 18, 2017
2 parents c85731d + 160c761 commit 92feeb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changelog
---------


0.3.4 (2017-10-18)
^^^^^^^^^^^^^^^^^^

* disable debug info

0.3.3 (2017-10-18)
^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion fut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__title__ = 'fut'
__version__ = '0.3.3'
__version__ = '0.3.4'
__author__ = 'Piotr Staroszczyk'
__author_email__ = 'piotr.staroszczyk@get24.org'
__license__ = 'GNU GPL v3'
Expand Down
2 changes: 1 addition & 1 deletion fut/pin.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def send(self, events):
"is_sess": self.sid != '',
"custom": self.custom,
"events": events}
print(data) # DEBUG
# print(data) # DEBUG
self.r.options(pin_url)
rc = self.r.post(pin_url, data=json.dumps(data)).json()
if rc['status'] != 'ok':
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


__title__ = 'fut'
__version__ = '0.3.3'
__version__ = '0.3.4'
__author__ = 'Piotr Staroszczyk'
__author_email__ = 'piotr.staroszczyk@get24.org'
__license__ = 'GNU GPL v3'
Expand Down

0 comments on commit 92feeb7

Please sign in to comment.