summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/wizard.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-11-08 06:02:36 +0900
committerkali <kali@leap.se>2012-11-08 06:02:36 +0900
commitb3c0634dc6e01656422a6c70297fc46d808f303f (patch)
treeaa974b30962baf404bac26e2440bb9008d459344 /src/leap/gui/firstrun/wizard.py
parent6a4d0b8298e24968106007fabef16238300742cd (diff)
selectprovider rename + fix onComplete function for provider entry
Diffstat (limited to 'src/leap/gui/firstrun/wizard.py')
-rwxr-xr-xsrc/leap/gui/firstrun/wizard.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/wizard.py b/src/leap/gui/firstrun/wizard.py
index fb601714..7a3d6973 100755
--- a/src/leap/gui/firstrun/wizard.py
+++ b/src/leap/gui/firstrun/wizard.py
@@ -109,12 +109,14 @@ class FirstRunWizard(QtGui.QWizard):
pages_dict = OrderedDict((
('intro', firstrun.intro.IntroPage),
('providerselection',
- firstrun.selectprovider.SelectProviderPage),
+ firstrun.providerselect.SelectProviderPage),
('login', firstrun.login.LogInPage),
('providerinfo', firstrun.providerinfo.ProviderInfoPage),
('providersetupvalidation',
firstrun.providersetup.ProviderSetupValidationPage),
('signup', firstrun.register.RegisterUserPage),
+ ('signupvalidation',
+ firstrun.regvalidation.RegisterUserValidationPage),
('connecting', firstrun.connect.ConnectingPage),
('lastpage', firstrun.last.LastPage)
))