summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-06-14 02:25:27 +0200
committerGravatar spoob <spoob@gmx.de> 2009-06-14 02:25:27 +0200
commit0a3b926a7d6aad311aa592f0aae34218f10b13cc (patch)
tree3dd94c0d9bd037b4f1c8408daaa5bf194e75142e
parentnew naming convention, cli structur (diff)
downloadpyload-0a3b926a7d6aad311aa592f0aae34218f10b13cc.tar.xz
added 1kh.de container plugin
-rw-r--r--Plugins/YoutubeChannel.py4
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