diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-12 21:25:08 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-12 21:25:08 +0100 |
| commit | 76e5181cade262b86610dcc851bcb4452196ccdc (patch) | |
| tree | 25831b32e1543b893a033729e472dd679dffdc64 /lib/python/Components/ActionMap.py | |
| parent | 00248c1a8794e64b8ce82d9cdefdd3ddae98dffd (diff) | |
| download | enigma2-76e5181cade262b86610dcc851bcb4452196ccdc.tar.gz enigma2-76e5181cade262b86610dcc851bcb4452196ccdc.zip | |
small speedups/cleanups by moritz venn
Diffstat (limited to 'lib/python/Components/ActionMap.py')
| -rw-r--r-- | lib/python/Components/ActionMap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/ActionMap.py b/lib/python/Components/ActionMap.py index b65d6ebc..a018983a 100644 --- a/lib/python/Components/ActionMap.py +++ b/lib/python/Components/ActionMap.py @@ -56,7 +56,7 @@ class ActionMap: class NumberActionMap(ActionMap): def action(self, contexts, action): - numbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + numbers = ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9") if (action in numbers and self.actions.has_key(action)): res = self.actions[action](int(action)) if res is not None: @@ -83,7 +83,7 @@ class HelpableActionMap(ActionMap): adict = { } for (action, funchelp) in actions.iteritems(): # check if this is a tuple - if type(funchelp) is type(()): + if isinstance(funchelp, tuple): alist.append((action, funchelp[1])) adict[action] = funchelp[0] else: |
