Browse Source

fix exception

totalwebcasting
Erik Johnson 10 years ago
parent
commit
c3f0b12b0f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/patreon.py

+ 1
- 1
youtube_dl/extractor/patreon.py View File

@ -122,6 +122,6 @@ class PatreonIE(InfoExtractor):
parser = PatreonHTMLParser()
parser.get_creation_info(info_page)
if not parser.creation_info.get('url'):
raise ExtractionError('Unable to retrieve creation URL')
raise ExtractorError('Unable to retrieve creation URL')
ret.update(parser.creation_info)
return ret

Loading…
Cancel
Save