diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-09-02 01:30:51 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-09-02 01:30:51 +0000 |
| commit | b3056981450c5f45450afdfcf7e7671610611522 (patch) | |
| tree | 20378c50fb80910e2ff72dcd458cef636f2e245a /lib | |
| parent | cf3e9383de633c9305a950ba5896376b14e43e12 (diff) | |
| download | enigma2-b3056981450c5f45450afdfcf7e7671610611522.tar.gz enigma2-b3056981450c5f45450afdfcf7e7671610611522.zip | |
- return 1 for used action
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/ActionMap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/ActionMap.py b/lib/python/Components/ActionMap.py index 2588421c..0ff5098b 100644 --- a/lib/python/Components/ActionMap.py +++ b/lib/python/Components/ActionMap.py @@ -20,6 +20,7 @@ class ActionMap: print " ".join(("action -> ", context, action)) if self.actions.has_key(action): self.actions[action]() + return 1 else: print "unknown action %s/%s! typo in keymap?" % (context, action) - + return 0 |
