diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-02 10:58:47 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-02 10:58:47 +0100 |
| commit | 4ba60a7e801150afc2e18f1250febe5e49a46d7a (patch) | |
| tree | 520cd1805e63d53bb02a813dfdd0db45332d8661 /lib/python/Plugins/Extensions | |
| parent | 64cfba23aba53b4ab3933284b2a4a9ef5ec68e26 (diff) | |
| parent | 65f1464c0852068d8a60e07e02da6a892d45578b (diff) | |
| download | enigma2-4ba60a7e801150afc2e18f1250febe5e49a46d7a.tar.gz enigma2-4ba60a7e801150afc2e18f1250febe5e49a46d7a.zip | |
Merge remote branch 'origin/bug_135_dvdburn_ts_only'
Diffstat (limited to 'lib/python/Plugins/Extensions')
| -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 928a8b82..bb40cc30 100755 --- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py +++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py @@ -188,6 +188,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 |
