summaryrefslogtreecommitdiff
path: root/src/leap/gui
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-06-14 10:49:41 -0300
committerTomás Touceda <chiiph@leap.se>2013-06-14 10:52:36 -0300
commitd8ccb2845ec34d0d00ef5c1799822da7c1281bea (patch)
tree77831ed2a96f49483b8aec55fbb016fc057628b6 /src/leap/gui
parent561e7bc90f21efe5f86be7a842c283f4b7fa7610 (diff)
Fix wrong set_status call after refactor
Diffstat (limited to 'src/leap/gui')
-rw-r--r--src/leap/gui/mainwindow.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py
index 90e74823..a5905679 100644
--- a/src/leap/gui/mainwindow.py
+++ b/src/leap/gui/mainwindow.py
@@ -1150,7 +1150,8 @@ class MainWindow(QtGui.QMainWindow):
"""
passed = data[self._provider_bootstrapper.PASSED_KEY]
if not passed:
- self._set_status(data[self._provider_bootstrapper.ERROR_KEY])
+ self._login_widget.set_status(
+ data[self._provider_bootstrapper.ERROR_KEY])
self._already_started_eip = False
def _eip_finished(self, exitCode):