diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-05 21:43:54 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-05 21:43:54 +0000 |
| commit | aa4989974a32ab2437d51fb6352b3eb54cecd83d (patch) | |
| tree | 02985c92f7eefd795dd96cfde0ee4f5262a18a50 /lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py | |
| parent | 313449731e21f1360ce920e7daf24ddd512706fc (diff) | |
| download | enigma2-aa4989974a32ab2437d51fb6352b3eb54cecd83d.tar.gz enigma2-aa4989974a32ab2437d51fb6352b3eb54cecd83d.zip | |
plugin api change: Plugins() and main functions must receive (and possibly ignore) keyword arguments
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py | 2 |
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 fea38424..94c81c05 100644 --- a/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py +++ b/lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py @@ -44,7 +44,7 @@ class FPUpgrade(Screen): def ok(self): self.close(4) -def Plugins(): +def Plugins(**kwargs): from Tools.DreamboxHardware import getFPVersion version = getFPVersion() newversion = getUpgradeVersion() or 0 |
