diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-23 13:02:06 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-23 13:02:06 +0100 |
| commit | 553bfd91daed58ddf42181b6324f7f58601c6f42 (patch) | |
| tree | 9924f8a8ad1534022357c316347dd17b4837eaea /lib/python | |
| parent | 329aa135a18a61d853d75e78e451cba66796cbd1 (diff) | |
| parent | 65f1464c0852068d8a60e07e02da6a892d45578b (diff) | |
| download | enigma2-553bfd91daed58ddf42181b6324f7f58601c6f42.tar.gz enigma2-553bfd91daed58ddf42181b6324f7f58601c6f42.zip | |
Merge remote branch 'remotes/origin/bug_135_dvdburn_ts_only' into experimental
Diffstat (limited to 'lib/python')
| -rwxr-xr-x | lib/python/Plugins/Extensions/DVDBurn/TitleList.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py index d22cbe93..dbc988b1 100755 --- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py +++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py @@ -200,6 +200,9 @@ class TitleList(Screen, HelpableScreen): def selectedSource(self, source): if source is None: return None + if not source.getPath().endswith(".ts"): + self.session.open(MessageBox,text = _("You can only burn Dreambox recordings!"), type = MessageBox.TYPE_ERROR) + return None t = self.project.addService(source) try: editor = source.edit |
