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

View file

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