summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/wizard.py
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-09-16 16:40:52 -0700
committerelijah <elijah@riseup.net>2014-09-19 14:23:14 -0700
commitc29b1dd9345e01e761b9891728ecd0b8d964a02d (patch)
tree79bda358ee3afe316cc0e0181b4efd9fa583f0b8 /src/leap/bitmask/gui/wizard.py
parent6166ffedcae0763f3c00076c79e74847f5c80823 (diff)
single pref win: gets the autopep8 beauty scrub.
Diffstat (limited to 'src/leap/bitmask/gui/wizard.py')
-rw-r--r--src/leap/bitmask/gui/wizard.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/gui/wizard.py b/src/leap/bitmask/gui/wizard.py
index 4d55a39e..ff9cae55 100644
--- a/src/leap/bitmask/gui/wizard.py
+++ b/src/leap/bitmask/gui/wizard.py
@@ -42,6 +42,7 @@ logger = logging.getLogger(__name__)
class Wizard(QtGui.QWizard):
+
"""
First run wizard to register a user and setup a provider
"""
@@ -317,7 +318,8 @@ class Wizard(QtGui.QWizard):
user_ok, msg = username_checks(username)
if user_ok:
- pass_ok, msg, field = password_checks(username, password, password2)
+ pass_ok, msg, field = password_checks(
+ username, password, password2)
if user_ok and pass_ok:
self._set_register_status(self.tr("Starting registration..."))