diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-07-17 03:20:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-07-17 03:20:29 +0200 |
commit | 5d6b8fdb79eb10b3b96cb265860d0d02d112af60 (patch) | |
tree | 4b11a41a91eb36b9f3cf5492392f4871bb733f43 /module/plugins/hoster/ARD.py | |
parent | New crypter plugin requested in #190 (diff) | |
download | pyload-5d6b8fdb79eb10b3b96cb265860d0d02d112af60.tar.xz |
fixed log api call for several plugins
Diffstat (limited to 'module/plugins/hoster/ARD.py')
-rw-r--r-- | module/plugins/hoster/ARD.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ARD.py b/module/plugins/hoster/ARD.py index 5ab65cd4b..cda783091 100644 --- a/module/plugins/hoster/ARD.py +++ b/module/plugins/hoster/ARD.py @@ -39,7 +39,7 @@ class RTMP: class ARD(Hoster): __name__ = "ARD Mediathek" - __version__ = "0.1" + __version__ = "0.11" __pattern__ = r"http://www\.ardmediathek\.de/.*" __config__ = [] @@ -73,7 +73,7 @@ class ARD(Hoster): chown(location, uid, gid) except Exception, e: - self.log.warning(_("Setting User and Group failed: %s") % str(e)) + self.logWarning(_("Setting User and Group failed: %s") % str(e)) output_file = save_join(location, save_path(pyfile.name)) + os.path.splitext(playpath)[1] |