aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-01-27 18:58:16 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-01-27 18:58:16 +0100
commit225bfe06cafe9cf403adf631731f5ae6574565e2 (patch)
tree046096c3d4e8e501c2a2b45339326e01bd250dec /lib/python/Components/NimManager.py
parentfdc322a811049c371bd7dbdb75192534cebd36c8 (diff)
parent09f66522e9f51ac8fc7921bd77ba36a9d9d3d4b3 (diff)
downloadenigma2-225bfe06cafe9cf403adf631731f5ae6574565e2.tar.gz
enigma2-225bfe06cafe9cf403adf631731f5ae6574565e2.zip
Merge branch 'master' of /home/tmbinc/enigma2-git
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 1fcbda1a..2692cb5b 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -14,8 +14,6 @@ from enigma import eDVBSatelliteEquipmentControl as secClass, \
from time import localtime, mktime
from datetime import datetime
-from sets import Set
-
def getConfigSatlist(orbpos, satlist):
default_orbpos = None
for x in satlist:
@@ -123,7 +121,7 @@ class SecConfigure:
def update(self):
sec = secClass.getInstance()
- self.configuredSatellites = Set()
+ self.configuredSatellites = set()
sec.clear() ## this do unlinking NIMs too !!
print "sec config cleared"
@@ -442,7 +440,7 @@ class SecConfigure:
def __init__(self, nimmgr):
self.NimManager = nimmgr
- self.configuredSatellites = Set()
+ self.configuredSatellites = set()
self.update()
class NIM(object):