mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-30 09:46:15 -05:00
Fix bug with displaying error message
This commit is contained in:
parent
c3cfe68f45
commit
22c13fc7bf
@ -137,7 +137,7 @@ class TorConnectionThread(QtCore.QThread):
|
|||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
common.log('TorConnectionThread', 'run', 'caught exception: {}'.format(e.args[0]))
|
common.log('TorConnectionThread', 'run', 'caught exception: {}'.format(e.args[0]))
|
||||||
self.error_connecting_to_tor.emit(e.args[0])
|
self.error_connecting_to_tor.emit(str(e.args[0]))
|
||||||
|
|
||||||
def _tor_status_update(self, progress, summary):
|
def _tor_status_update(self, progress, summary):
|
||||||
self.tor_status_update.emit(progress, summary)
|
self.tor_status_update.emit(progress, summary)
|
||||||
|
Loading…
Reference in New Issue
Block a user