aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.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/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.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/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py b/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py
index 407f1ade..1946edf0 100644
--- a/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py
@@ -52,6 +52,6 @@ def Plugins(**kwargs):
version = getFPVersion()
newversion = getUpgradeVersion() or 0
if version is not None and version < newversion:
- return PluginDescriptor(name="FP Upgrade", where = PluginDescriptor.WHERE_WIZARD, fnc=FPUpgrade)
+ return PluginDescriptor(name="FP Upgrade", where = PluginDescriptor.WHERE_WIZARD, fnc=(8, FPUpgrade))
else:
return [ ]