diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-09-23 10:10:24 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-09-23 10:10:24 +0000 |
| commit | 2dc6a66bffab9f1dfd3f1749a3113ac01525441c (patch) | |
| tree | 34ac41a80b4ffdc45974c4df6b80541646b9a31d /lib/python | |
| parent | 634e93f79616e7f50d6420c6d73d27c827534720 (diff) | |
| download | enigma2-2dc6a66bffab9f1dfd3f1749a3113ac01525441c.tar.gz enigma2-2dc6a66bffab9f1dfd3f1749a3113ac01525441c.zip | |
add handleCommand to converter
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/Converter/Converter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Components/Converter/Converter.py b/lib/python/Components/Converter/Converter.py index 709eff94..424a2323 100644 --- a/lib/python/Components/Converter/Converter.py +++ b/lib/python/Components/Converter/Converter.py @@ -7,3 +7,6 @@ class Converter(Element): def __repr__(self): return str(type(self)) + "(" + self.converter_arguments + ")" + + def handleCommand(self, cmd): + self.source.handleCommand(cmd) |
