From ec7c893d9e69047f1486101ce1b9861cebb7a222 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Wed, 17 May 2017 11:36:32 -0700 Subject: [PATCH] Fix bug with displaying error message --- onionshare_gui/tor_connection_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionshare_gui/tor_connection_dialog.py b/onionshare_gui/tor_connection_dialog.py index cf30b633..93c03bef 100644 --- a/onionshare_gui/tor_connection_dialog.py +++ b/onionshare_gui/tor_connection_dialog.py @@ -137,7 +137,7 @@ class TorConnectionThread(QtCore.QThread): except Exception as e: 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): self.tor_status_update.emit(progress, summary)