diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-31 15:17:29 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-31 15:17:29 +0000 |
| commit | 169755aa6f9823ece2c51e720dbc4de6131c9308 (patch) | |
| tree | 40f4a9310c971a50b877344ba27f7ffeafff8c6b /lib | |
| parent | f5168f904c3a2189cf9e25f033c3a8cea8456386 (diff) | |
| download | enigma2-169755aa6f9823ece2c51e720dbc4de6131c9308.tar.gz enigma2-169755aa6f9823ece2c51e720dbc4de6131c9308.zip | |
changed output
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/AVSwitch.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index 7407ae72..df2020d3 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -5,20 +5,16 @@ class AVSwitch: pass def setColorFormat(self, value): - print "colorformat" - print value + print "colorformat:" + str(value) def setAspectRatio(self, value): - print "aspectratio" - print value + print "aspectratio:" + str(value) def setSystem(self, value): - print "system" - print value + print "system:" + str(value) def setWSS(self, value): - print "wss" - print value + print "wss:" + str(value) def InitAVSwitch(): config.av = ConfigSubsection(); |
