diff options
author | 2015-04-13 17:34:59 +0200 | |
---|---|---|
committer | 2015-04-13 17:34:59 +0200 | |
commit | 2db634796bd5426c11f7849ce480265091f128c8 (patch) | |
tree | 5a54f7535e9c0ff1ec65f05f347b6eafbb496922 /pyload/plugin/hoster/ZDF.py | |
parent | Cleanup (diff) | |
download | pyload-2db634796bd5426c11f7849ce480265091f128c8.tar.xz |
Cleanup (2)
Diffstat (limited to 'pyload/plugin/hoster/ZDF.py')
-rw-r--r-- | pyload/plugin/hoster/ZDF.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pyload/plugin/hoster/ZDF.py b/pyload/plugin/hoster/ZDF.py index 6f17df61a..c02eadc23 100644 --- a/pyload/plugin/hoster/ZDF.py +++ b/pyload/plugin/hoster/ZDF.py @@ -23,8 +23,6 @@ class ZDF(Hoster): @staticmethod - - def video_key(video): return ( int(video.findtext("videoBitrate", "0")), @@ -33,16 +31,12 @@ class ZDF(Hoster): @staticmethod - - def video_valid(video): return video.findtext("url").startswith("http") and video.findtext("url").endswith(".mp4") and \ video.findtext("facets/facet").startswith("progressive") @staticmethod - - def get_id(url): return int(re.search(r"\D*(\d{4,})\D*", url).group(1)) |