aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-02-13 23:38:52 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-02-13 23:38:52 +0100
commitdc88bc9542802a1180b53142be5f777d75c6c22e (patch)
treef7e762bfec11e3140c9fc4b3351164d1d652b2ee /lib/python
parent7a421f3ff2dad0150148880a71d6542ab87589bd (diff)
downloadenigma2-dc88bc9542802a1180b53142be5f777d75c6c22e.tar.gz
enigma2-dc88bc9542802a1180b53142be5f777d75c6c22e.zip
add default for ConfigColor.. ConfigSequence needs this now
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/DVDProject.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py b/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py
index 7ea32dfe..660234f2 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py
@@ -2,8 +2,8 @@ from Tools.Directories import fileExists
from Components.config import config, ConfigSubsection, ConfigInteger, ConfigText, ConfigSelection, getConfigListEntry, ConfigSequence, ConfigSubList
class ConfigColor(ConfigSequence):
- def __init__(self):
- ConfigSequence.__init__(self, seperator = "#", limits = [(0,255),(0,255),(0,255)])
+ def __init__(self, default = [128,128,128]):
+ ConfigSequence.__init__(self, seperator = "#", limits = [(0,255),(0,255),(0,255)], default = default)
class ConfigFilename(ConfigText):
def __init__(self):