aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-03-13 00:40:10 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-03-13 00:40:10 +0000
commit6f461023bf90fd89dd96a8463b5cdeb2f3fd0feb (patch)
tree84bcc2c105dfeda5590248485e8f26c7773ef672
parent005ae139dc263789ebad88e51f5f5e3d49f73768 (diff)
downloadenigma2-6f461023bf90fd89dd96a8463b5cdeb2f3fd0feb.tar.gz
enigma2-6f461023bf90fd89dd96a8463b5cdeb2f3fd0feb.zip
add return
-rw-r--r--lib/python/Components/SystemInfo.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Components/SystemInfo.py b/lib/python/Components/SystemInfo.py
index f33a8552..844c9544 100644
--- a/lib/python/Components/SystemInfo.py
+++ b/lib/python/Components/SystemInfo.py
@@ -6,5 +6,6 @@ def getNumVideoDecoders():
idx = 0
while fileExists("/dev/dvb/adapter0/video%d"%(idx), 'w'):
idx += 1
+ return idx
SystemInfo["NumVideoDecoders"] = getNumVideoDecoders()