Skip to content
Snippets Groups Projects
Commit 04c2886a authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

fix for python 2.7 and prepare next release

parent b4605213
No related branches found
No related tags found
No related merge requests found
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.21'
version = '0.19.22'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.21'
version = '0.19.22'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.21'
version = '0.19.22'
......@@ -260,7 +260,7 @@ class GrapheneRPC(object):
reply = self.ws_send(json.dumps(payload, ensure_ascii=False).encode('utf8'))
else:
reply = self.request_send(json.dumps(payload, ensure_ascii=False).encode('utf8'))
if reply == '':
if not bool(reply):
self.error_cnt[self.url] += 1
sleep_and_check_retries(self.num_retries_call, self.error_cnt_call, self.url, "Empty Reply")
self.rpcconnect()
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.21'
version = '0.19.22'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.21'
version = '0.19.22'
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.19.21'
VERSION = '0.19.22'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment