aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ServiceInfo.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-13 01:05:42 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-13 01:05:42 +0100
commitc46312d7f5ce4113ece4c33595b7192eccadcb1d (patch)
treee3319cfa0f7cf929f2c2d181f60bf80dc34a7361 /lib/python/Screens/ServiceInfo.py
parentaed27e79c07f8f2463ccefed5ba5c3e1b4352052 (diff)
parentc7cadfc8b46d1f6db38fac73624393873cae2ac7 (diff)
downloadenigma2-c46312d7f5ce4113ece4c33595b7192eccadcb1d.tar.gz
enigma2-c46312d7f5ce4113ece4c33595b7192eccadcb1d.zip
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Screens/ServiceInfo.py')
-rw-r--r--lib/python/Screens/ServiceInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py
index e07b3208..df8af4b4 100644
--- a/lib/python/Screens/ServiceInfo.py
+++ b/lib/python/Screens/ServiceInfo.py
@@ -25,7 +25,7 @@ def ServiceInfoListEntry(a, b, valueType=TYPE_TEXT, param=4):
res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 30, 0, RT_HALIGN_LEFT, ""))
res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 25, 0, RT_HALIGN_LEFT, a))
print "b:", b
- if type(b) is not str:
+ if not isinstance(b, str):
if valueType == TYPE_VALUE_HEX:
b = ("0x%0" + str(param) + "x") % to_unsigned(b)
elif valueType == TYPE_VALUE_DEC: