From: Stefan Pluecken Date: Tue, 6 Dec 2005 19:23:45 +0000 (+0000) Subject: remove debug-msges X-Git-Tag: 2.6.0~4815 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8dfa670adff5299752bcb5a42aff4ae91179ee22 remove debug-msges --- diff --git a/lib/python/Components/ConditionalWidget.py b/lib/python/Components/ConditionalWidget.py index eec5b436..9b02f285 100644 --- a/lib/python/Components/ConditionalWidget.py +++ b/lib/python/Components/ConditionalWidget.py @@ -48,11 +48,9 @@ class ConditionalWidget(Widget): def activateCondition(self, condition): if (condition): if (self.state == self.HIDDEN): - print "update: " + str(self) + " SHOW" self.showWidget() else: if (self.state == self.SHOWN): - print "update: " + str(self) + " HIDE" self.hideWidget() def update(self):