summaryrefslogtreecommitdiff
path: root/src/leap/gui
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-01-09 05:02:21 +0900
committerkali <kali@leap.se>2013-01-09 05:02:21 +0900
commit460dd7c20408958dda1ca8e77050e9af334b558f (patch)
tree2fc60a84dbf91fbac0395239a7ecf70580943ec2 /src/leap/gui
parent93d5a8cd1ec55c725d5931d86989ea11ac2db844 (diff)
fix from_login
Diffstat (limited to 'src/leap/gui')
-rw-r--r--src/leap/gui/firstrun/login.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/login.py b/src/leap/gui/firstrun/login.py
index e7afee9f..6bf0605d 100644
--- a/src/leap/gui/firstrun/login.py
+++ b/src/leap/gui/firstrun/login.py
@@ -108,7 +108,7 @@ class LogInPage(InlineValidationPage, UserFormMixIn): # InlineValidationPage
# page here as a mean to catch
# srp authentication errors while
wizard = self.wizard()
- eipconfigchecker = wizard.eipconfigchecker()
+ eipconfigchecker = wizard.eipconfigchecker(domain=domain)
########################
# 1) try name resolution
@@ -321,6 +321,7 @@ class LogInPage(InlineValidationPage, UserFormMixIn): # InlineValidationPage
self.setField('provider_domain', domain)
self.setField('login_userName', username)
self.setField('login_userPassword', password)
+ self.wizard().from_login = True
return True