aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ImageWizard.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-02-11 14:12:52 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-02-11 14:12:52 +0000
commit5bc8209d19e1d41f289cfe198e4e3a839adf894b (patch)
tree34a7906db00712fd20837887212223f50236979b /lib/python/Screens/ImageWizard.py
parentb6748e04393c47c18453c2d2fda88e315aa9d55d (diff)
downloadenigma2-5bc8209d19e1d41f289cfe198e4e3a839adf894b.tar.gz
enigma2-5bc8209d19e1d41f289cfe198e4e3a839adf894b.zip
add a 'priority' for wizard screens to define the run order
Diffstat (limited to 'lib/python/Screens/ImageWizard.py')
-rw-r--r--lib/python/Screens/ImageWizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ImageWizard.py b/lib/python/Screens/ImageWizard.py
index 148eba52..ad0640cf 100644
--- a/lib/python/Screens/ImageWizard.py
+++ b/lib/python/Screens/ImageWizard.py
@@ -34,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')