aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-04 11:42:07 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-04 11:42:07 +0000
commitcaeccfb6b669fa5c17f6233788271085c227f234 (patch)
tree6879935ce385a2d98e01c9616e35cbbe49aee728 /lib/python
parent65f26c0a907126359140d40faa97b293702e9291 (diff)
downloadenigma2-caeccfb6b669fa5c17f6233788271085c227f234.tar.gz
enigma2-caeccfb6b669fa5c17f6233788271085c227f234.zip
cleanup
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/ConditionalWidget.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/python/Components/ConditionalWidget.py b/lib/python/Components/ConditionalWidget.py
index f826c296..c1baceb2 100644
--- a/lib/python/Components/ConditionalWidget.py
+++ b/lib/python/Components/ConditionalWidget.py
@@ -24,13 +24,10 @@ class ConditionalWidget(GUIComponent):
def update(self):
if (self.conditionalFunction != None):
try:
- self.conditionalFunction() # check, if the conditionalfunction is still valid
self.activateCondition(self.conditionalFunction())
except:
self.conditionalFunction = None
self.activateCondition(False)
-
-import time
class BlinkingWidget(GUIComponent):
def __init__(self):