summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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