diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-13 01:16:16 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-13 01:16:16 +0000 |
| commit | af55c6eade1569161bcb04cdbec7586dbedbcd14 (patch) | |
| tree | 58669a296455a76537ac669fd9d772eb5855f430 /lib/python/Plugins/SystemPlugins/Satfinder | |
| parent | 435109600b9748e54b1aa9d21bfc3261d14abd60 (diff) | |
| download | enigma2-af55c6eade1569161bcb04cdbec7586dbedbcd14.tar.gz enigma2-af55c6eade1569161bcb04cdbec7586dbedbcd14.zip | |
fix more ConfigSatlist defaults
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Satfinder')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Satfinder/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py index 487dcd72..40a65577 100644 --- a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py +++ b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py @@ -8,7 +8,7 @@ from Components.Label import Label from Components.ConfigList import ConfigList from Components.TunerInfo import TunerInfo from Components.ActionMap import ActionMap -from Components.NimManager import nimmanager +from Components.NimManager import nimmanager, getConfigSatlist from Components.MenuList import MenuList from Components.config import ConfigSelection, ConfigSatlist, getConfigListEntry @@ -170,7 +170,7 @@ class Satfinder(ScanSetup): self.tuning_transponder = None self.tuning_type = ConfigSelection(choices = [("manual_transponder", _("Manual transponder")), ("predefined_transponder", _("Predefined transponder"))]) - self.tuning_sat = ConfigSatlist(default = 192, list = nimmanager.getSatListForNim(self.feid)) + self.tuning_sat = getConfigSatlist(192, nimmanager.getSatListForNim(self.feid)) ScanSetup.createConfig(self, None) self.updateSats() |
