diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-03 16:19:13 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-03 16:19:13 +0000 |
| commit | 5d17d6c6fdcb54f655825716084fb4bea871f50f (patch) | |
| tree | 5cb2adcb7f4cf726ab7069d9ce06c3e47b3cd350 /lib/python/Plugins/Extensions/DVDBurn/DVDProject.py | |
| parent | 2dc13ab463d67b1255ec31cbe2b27cafef318dbe (diff) | |
| download | enigma2-5d17d6c6fdcb54f655825716084fb4bea871f50f.tar.gz enigma2-5d17d6c6fdcb54f655825716084fb4bea871f50f.zip | |
fix hardcoded path bug, prettify xml output
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/DVDProject.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/DVDProject.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py b/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py index 48a75544..23f7a843 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py +++ b/lib/python/Plugins/Extensions/DVDBurn/DVDProject.py @@ -37,16 +37,16 @@ class DVDProject: list.append(' vmgm="' + self.vmgm + '"') list.append(' />\n') list.append('\t<menu') - list.append(' bg="' + self.menubg + '"') - list.append(' audio="' + self.menuaudio + '"') - list.append(' color_button="' + str(self.color_button) + '"') - list.append(' color_highlight="' + str(self.color_highlight) + '"') - list.append(' color_headline="' + str(self.color_headline) + '"') - list.append(' font_face="' + self.font_face + '"') - list.append(' font_size="' + str(self.font_size) + '"') - list.append(' space_left="' + str(self.space_left) + '"') - list.append(' space_top="' + str(self.space_top) + '"') - list.append(' space_rows="' + str(self.space_rows) + '"') + list.append('\tbg="' + self.menubg + '"\n') + list.append('\t\taudio="' + self.menuaudio + '"\n') + list.append('\t\tcolor_button="' + str(self.color_button) + '"\n') + list.append('\t\tcolor_highlight="' + str(self.color_highlight) + '"\n') + list.append('\t\tcolor_headline="' + str(self.color_headline) + '"\n') + list.append('\t\tfont_face="' + self.font_face + '"\n') + list.append('\t\tfont_size="' + str(self.font_size) + '"\n') + list.append('\t\tspace_left="' + str(self.space_left) + '"\n') + list.append('\t\tspace_top="' + str(self.space_top) + '"\n') + list.append('\t\tspace_rows="' + str(self.space_rows) + '"') list.append(' />\n') list.append('\t<titles>\n') for title in self.titles: |
