diff options
author | enkore <public@enkore.de> | 2013-04-06 20:43:48 +0200 |
---|---|---|
committer | enkore <public@enkore.de> | 2013-04-06 20:43:48 +0200 |
commit | d8f2b5d9046f4cca3a8d0cd5c5dd297526ea870e (patch) | |
tree | 2854b78048edd7fec7742586b2ee5fdacbc810a1 /module/plugins/hoster | |
parent | Add hoster plugin for ARD mediathek (diff) | |
download | pyload-d8f2b5d9046f4cca3a8d0cd5c5dd297526ea870e.tar.xz |
ARD: Correct file extension
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/ARD.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ARD.py b/module/plugins/hoster/ARD.py index 60a40e69d..5ab65cd4b 100644 --- a/module/plugins/hoster/ARD.py +++ b/module/plugins/hoster/ARD.py @@ -75,6 +75,6 @@ class ARD(Hoster): except Exception, e: self.log.warning(_("Setting User and Group failed: %s") % str(e)) - output_file = save_join(location, save_path(pyfile.name)) + output_file = save_join(location, save_path(pyfile.name)) + os.path.splitext(playpath)[1] RTMP.download_rtmp_stream(url, playpath=playpath, output_file=output_file) |