summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrunwizard.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-10-11 07:22:49 +0900
committerkali <kali@leap.se>2012-10-11 07:22:49 +0900
commita964b9e55a53b1d87d296e0f3b5295b0366c5967 (patch)
treee37e3b6f82a8e06497bc556e6e8467f6ce647d26 /src/leap/gui/firstrunwizard.py
parent272d72506d667ae4dc8719066422f782983e6746 (diff)
comment out the set_password call until we fix #744
Diffstat (limited to 'src/leap/gui/firstrunwizard.py')
-rwxr-xr-xsrc/leap/gui/firstrunwizard.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/leap/gui/firstrunwizard.py b/src/leap/gui/firstrunwizard.py
index 6f2c83ce..a76865fd 100755
--- a/src/leap/gui/firstrunwizard.py
+++ b/src/leap/gui/firstrunwizard.py
@@ -167,7 +167,7 @@ class FirstRunWizard(QtGui.QWizard):
"""
provider = self.get_provider()
username = self.field('userName')
- password = self.field('userPassword')
+ #password = self.field('userPassword')
remember_pass = self.field('rememberPassword')
logger.debug('chosen provider: %s', provider)
@@ -185,7 +185,10 @@ class FirstRunWizard(QtGui.QWizard):
seed = self.get_random_str(10)
settings.setValue("%s_seed" % provider, seed)
- leapkeyring.leap_set_password(username, password, seed=seed)
+ # Commenting out for 0.2.0 release
+ # since we did not fix #744 on time.
+
+ #leapkeyring.leap_set_password(username, password, seed=seed)
logger.debug('First Run Wizard Done.')
cb = self.success_cb