summaryrefslogtreecommitdiff
path: root/src/leap/gui/wizard.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-07-19 11:35:27 -0300
committerTomás Touceda <chiiph@leap.se>2013-07-19 12:14:23 -0300
commit2b2505683f9dd91b6f2f8aeb1ac0798c975a53d6 (patch)
treeb641d44e2f4819ca0458f3754246c4314864a483 /src/leap/gui/wizard.py
parent7ec29145b064afab312cb57e74dc33c38da1e3ea (diff)
Workaround segfault when emitting a signal with a None parameter
Also, support a response from requests be None in certain places.
Diffstat (limited to 'src/leap/gui/wizard.py')
-rw-r--r--src/leap/gui/wizard.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/gui/wizard.py b/src/leap/gui/wizard.py
index 5333edeb..2b48fc81 100644
--- a/src/leap/gui/wizard.py
+++ b/src/leap/gui/wizard.py
@@ -309,8 +309,8 @@ class Wizard(QtGui.QWizard):
error_msg = json_content.get("errors").get("login")[0]
if not error_msg.istitle():
error_msg = "%s %s" % (old_username, error_msg)
- except:
- logger.error("Unknown error: %r" % (req.content,))
+ except Exception as e:
+ logger.error("Unknown error: %r" % (e,))
self._set_register_status(error_msg, error=True)
self.ui.btnRegister.setEnabled(True)