Skip to content

Commit

Permalink
Clear some leftover debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
shakim authored and lavagetto committed Feb 22, 2015
1 parent cd128c9 commit 31d5257
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/etcd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,8 @@ def handle(cls, errorCode=None, message=None, cause=None, **kwdargs):
try:
msg = '{} : {}'.format(message, cause)
payload={'errorCode': errorCode, 'message': message, 'cause': cause}
print("============================")
print(payload)
print("length: {}".format(len(kwdargs)))
if len(kwdargs) > 0:
for key in kwdargs:
print("{}={}".format(key, kwdargs[key]))
payload[key]=kwdargs[key]
exc = cls.error_exceptions[errorCode]
except:
Expand Down

0 comments on commit 31d5257

Please sign in to comment.