File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
pusher_push_notifications Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 66import requests
77import six
88
9- SDK_VERSION = '0.10.0 '
9+ SDK_VERSION = '0.10.1 '
1010INTEREST_MAX_LENGTH = 164
1111INTEREST_REGEX = re .compile ('^(_|-|=|@|,|\\ .|;|[A-Z]|[a-z]|[0-9])*$' )
1212MAX_NUMBER_OF_INTERESTS = 100
Original file line number Diff line number Diff line change 22from codecs import open
33from os import path
44
5- __version__ = '0.10.0 '
5+ __version__ = '0.10.1 '
66
77here = path .abspath (path .dirname (__file__ ))
88
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
128128 'content-type' : 'application/json' ,
129129 'content-length' : '69' ,
130130 'authorization' : 'Bearer SECRET_KEY' ,
131- 'x-pusher-library' : 'pusher-push-notifications-python 0.10.0 ' ,
131+ 'x-pusher-library' : 'pusher-push-notifications-python 0.10.1 ' ,
132132 'host' : 'instance_id.pushnotifications.pusher.com' ,
133133 },
134134 )
@@ -454,4 +454,5 @@ def test_publish_should_error_correctly_if_error_not_json(self):
454454 },
455455 },
456456 )
457- self .assertIn ('Unknown error: no description' , str (e .exception ))
457+ self .assertIn ('Unknown error: no description' , str (e .exception ))
458+
You can’t perform that action at this time.
0 commit comments