aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-05 22:55:47 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-05 22:55:47 +0000
commit911fcb5e5e2bcdeeb8bde259c4fbe7827aa72bf1 (patch)
treec3e76769dea888ee76e39a1ff7c74e013fc5f2eb
parentc21b685c20984667ad5bbd753b5584cd8b69da1a (diff)
downloadenigma2-911fcb5e5e2bcdeeb8bde259c4fbe7827aa72bf1.tar.gz
enigma2-911fcb5e5e2bcdeeb8bde259c4fbe7827aa72bf1.zip
remove debug messages
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index c4221154..74de6aa7 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -341,23 +341,15 @@ def getTitlesPerMenu(nr_titles):
return titles_per_menu
def formatTitle(template, title, track):
- print template
template = template.replace("$i", str(track))
- print template
template = template.replace("$t", title.name)
- print template
template = template.replace("$d", title.descr)
- print template
template = template.replace("$c", str(len(title.chaptermarks)+1))
- print template
template = template.replace("$f", title.inputfile)
- print template
template = template.replace("$C", title.channel)
- print template
l = title.length
lengthstring = "%d:%02d:%02d" % (l/3600, l%3600/60, l%60)
template = template.replace("$l", lengthstring)
- print template
if title.timeCreate:
template = template.replace("$Y", str(title.timeCreate[0]))
template = template.replace("$M", str(title.timeCreate[1]))
@@ -582,7 +574,6 @@ class DVDJob(Job):
if titlesize > maxsize: maxsize = titlesize
totalsize += titlesize
diskSpaceNeeded = totalsize + maxsize
- print "diskSpaceNeeded:", diskSpaceNeeded
DVDAuthorTask(self, diskSpaceNeeded)
@@ -605,13 +596,11 @@ class DVDJob(Job):
RemoveDVDFolder(self)
def Burn(session, project):
- print "burning cuesheet!"
j = DVDJob(project)
job_manager.AddJob(j)
return j
def PreviewMenu(session, project):
- print "preview DVD menu!"
j = DVDJob(project, menupreview=True)
job_manager.AddJob(j)
return j