diff options
author | spoob <spoob@gmx.de> | 2009-06-14 02:25:27 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-06-14 02:25:27 +0200 |
commit | 0a3b926a7d6aad311aa592f0aae34218f10b13cc (patch) | |
tree | 3dd94c0d9bd037b4f1c8408daaa5bf194e75142e /Plugins | |
parent | new naming convention, cli structur (diff) | |
download | pyload-0a3b926a7d6aad311aa592f0aae34218f10b13cc.tar.xz |
added 1kh.de container plugin
Diffstat (limited to 'Plugins')
-rw-r--r-- | Plugins/YoutubeChannel.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Plugins/YoutubeChannel.py b/Plugins/YoutubeChannel.py index 34a872b88..312f8d9ce 100644 --- a/Plugins/YoutubeChannel.py +++ b/Plugins/YoutubeChannel.py @@ -22,9 +22,6 @@ class YoutubeChannel(Plugin): self.html = None self.read_config() - def download_html(self): - self.html = "Not needed" - def file_exists(self): """ returns True or False """ @@ -46,6 +43,7 @@ class YoutubeChannel(Plugin): new_links = re.findall(r"href\='(http:\/\/www.youtube.com\/watch\?v\=[^']+)", rep) if new_links != []: temp_links.extend(new_links) + print temp_links else: break page += 1 |