aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-05-21 08:37:30 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-05-21 08:37:30 +0000
commit0fe79d03d3e20c951076f78418bf51d04b3c7d83 (patch)
tree26708db9d5584a66b7a4c6b85df1cf86e42eda12 /lib/python
parent04ddd458458ad1087173c5a1854677288d47c453 (diff)
downloadenigma2-0fe79d03d3e20c951076f78418bf51d04b3c7d83.tar.gz
enigma2-0fe79d03d3e20c951076f78418bf51d04b3c7d83.zip
needed fix
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py b/lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py
index a7640df3..65142e37 100644
--- a/lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py
+++ b/lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py
@@ -23,7 +23,7 @@ class SocketMMIMessageHandler:
def socketStateChanged(self, slot):
if slot in self.dlgs:
self.dlgs[slot].ciStateChanged()
- elif self.handler.availableMMI(slot) == 1:
+ elif socketmmi.availableMMI(slot) == 1:
if self.session:
self.dlgs[slot] = self.session.openWithCallback(self.dlgClosed, MMIDialog, slot, 3, socketmmi, _("wait for mmi..."))