X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b4f98a4602ab1b51bf03f989ece928214cafd46b..0cf3bc28d59e7bfb8519839a8e9c36a87ea382c8:/lib/python/Screens/StartWizard.py 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)