From: Felix Domke Date: Wed, 31 Aug 2005 18:28:38 +0000 (+0000) Subject: - fix av switch X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=5ec9643747ed0dc24917ddac6310be0e49f74ce5 - fix av switch --- diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index df2020d..8da370e 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -1,4 +1,5 @@ from config import * +import os class AVSwitch: def __init__(self): @@ -6,6 +7,7 @@ class AVSwitch: def setColorFormat(self, value): print "colorformat:" + str(value) + os.system("scart " + str(value)) def setAspectRatio(self, value): print "aspectratio:" + str(value)