Fix tor logging on message fail

This commit is contained in:
shortcutme 2018-08-26 02:56:41 +02:00
parent 33877c73bb
commit 8738817eab
No known key found for this signature in database
GPG Key ID: 5B63BAE6CB9613AE
1 changed files with 2 additions and 1 deletions

View File

@ -300,7 +300,8 @@ class TorManager(object):
time.sleep(1)
self.connect()
back = None
self.log.debug("< %s" % back.strip())
if back:
self.log.debug("< %s" % back.strip())
return back
def getPrivatekey(self, address):