diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-10-11 00:06:52 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-10-11 00:06:52 +0200 |
| commit | fb9f45f86fe3c793acf781ffbdee18c24857ffa7 (patch) | |
| tree | 2667f8f6f676654be12a58def88d78e111dbeebc /lib/python | |
| parent | eca7d386b015423112c83badcdb3e4f7e6affe6e (diff) | |
| parent | 4cf4560a3dfc1a18f4bc894e153dc501965f4b0f (diff) | |
| download | enigma2-fb9f45f86fe3c793acf781ffbdee18c24857ffa7.tar.gz enigma2-fb9f45f86fe3c793acf781ffbdee18c24857ffa7.zip | |
Merge branch 'bug_587_new_internally_connectable_and_unsupported_tuner_management' into experimental
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/NimManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 1aff8663..2ece5e65 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -150,7 +150,7 @@ class SecConfigure: for slot in nim_slots: if slot.type is not None: - used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False, slot.isCompatible("DVB-S2"))) + used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False, slot.isCompatible("DVB-S2"), slot.frontend_id is None and -1 or slot.frontend_id)) eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) for slot in nim_slots: |
