diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-01-03 13:12:34 +0100 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:25:01 +0100 |
commit | 75a4cf3c977bd767639414ccfd600d93d533b74c (patch) | |
tree | 2d00aa3f10cbaafe67df3399929a2dc50221d43f | |
parent | 0487b407a1d25cab8bbdbfa1cdc999e080a10531 (diff) |
Fix minor problems with Youtube user InfoExtractor
-rwxr-xr-x | youtube-dl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube-dl b/youtube-dl index 6b21f8a19..69b1a9a37 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1085,7 +1085,7 @@ class YoutubeUserIE(InfoExtractor): _VALID_URL = r'(?:http://)?(?:\w+\.)?youtube.com/user/(.*)' _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s' - _VIDEO_INDICATOR = r'http://gdata.youtube.com/feeds/api/videos/(.*)' + _VIDEO_INDICATOR = r'http://gdata.youtube.com/feeds/api/videos/(.*)' # XXX Fix this. _youtube_ie = None def __init__(self, youtube_ie, downloader=None): @@ -1098,7 +1098,7 @@ class YoutubeUserIE(InfoExtractor): def report_download_page(self, username): """Report attempt to download user page.""" - self._downloader.to_stdout(u'[youtube] USR %s: Downloading page ' % (username)) + self._downloader.to_stdout(u'[youtube] user %s: Downloading page ' % (username)) def _real_initialize(self): self._youtube_ie.initialize() @@ -1127,7 +1127,6 @@ class YoutubeUserIE(InfoExtractor): ids_in_page = [] for mobj in re.finditer(self._VIDEO_INDICATOR, page): - print mobj.group(1) if mobj.group(1) not in ids_in_page: ids_in_page.append(mobj.group(1)) video_ids.extend(ids_in_page) |