add a 'priority' for wizard screens to define the run order
[enigma2.git] / lib / python / Screens / ImageWizard.py
index 5617e8f183b88f070d3ac9cc1efb7cb2cba9c062..ad0640cf95834b566a8dd4693b18ccdd2409b82a 100644 (file)
@@ -1,9 +1,5 @@
 from Wizard import Wizard, wizardManager
 
-from Components.config import configElementBoolean, config
-from Components.Pixmap import *
-
-from LanguageSelection import LanguageSelection
 from Tools.Directories import fileExists
 
 import os
@@ -38,7 +34,7 @@ class ImageWizard(Wizard):
        def markDone(self):
                pass
 
-wizardManager.registerWizard(ImageWizard, backupAvailable)
+wizardManager.registerWizard(ImageWizard, backupAvailable, priority = 10)
 
 def doBackup(path):
        os.system('tar cvpf ' + path + backupfile + ' /etc/enigma2')