diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-13 23:38:52 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-13 23:38:52 +0100 |
| commit | dc88bc9542802a1180b53142be5f777d75c6c22e (patch) | |
| tree | f7e762bfec11e3140c9fc4b3351164d1d652b2ee /lib/python/Plugins/Extensions/DVDBurn | |
| parent | 7a421f3ff2dad0150148880a71d6542ab87589bd (diff) | |
| download | enigma2-dc88bc9542802a1180b53142be5f777d75c6c22e.tar.gz enigma2-dc88bc9542802a1180b53142be5f777d75c6c22e.zip | |
add default for ConfigColor.. ConfigSequence needs this now
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/DVDProject.py | 4 |
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): |
