diff options
Diffstat (limited to 'lib/python/Screens/StartWizard.py')
| -rw-r--r-- | lib/python/Screens/StartWizard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index ae806ab6..aab81f63 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -7,7 +7,7 @@ from Screens.Rc import Rc from Components.Pixmap import Pixmap, MovingPixmap, MultiPixmap from Components.config import config, ConfigBoolean, configfile, ConfigSubsection -from LanguageSelection import LanguageSelection +from LanguageSelection import LanguageWizard config.misc.firstrun = ConfigBoolean(default = True) config.misc.startwizard = ConfigSubsection() @@ -28,5 +28,5 @@ class StartWizard(DefaultSatLists, Rc): config.misc.firstrun.save() configfile.save() -wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value, priority = 5) +wizardManager.registerWizard(LanguageWizard, config.misc.languageselected.value, priority = 5) wizardManager.registerWizard(StartWizard, config.misc.firstrun.value, priority = 20) |
