aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/tinypic.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/tinypic.py')
-rw-r--r--youtube_dl/extractor/tinypic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tinypic.py b/youtube_dl/extractor/tinypic.py
index c43cace..bc2def5 100644
--- a/youtube_dl/extractor/tinypic.py
+++ b/youtube_dl/extractor/tinypic.py
@@ -34,7 +34,7 @@ class TinyPicIE(InfoExtractor):
webpage = self._download_webpage(url, video_id, 'Downloading page')
mobj = re.search(r'(?m)fo\.addVariable\("file",\s"(?P<fileid>[\da-z]+)"\);\n'
- '\s+fo\.addVariable\("s",\s"(?P<serverid>\d+)"\);', webpage)
+ r'\s+fo\.addVariable\("s",\s"(?P<serverid>\d+)"\);', webpage)
if mobj is None:
raise ExtractorError('Video %s does not exist' % video_id, expected=True)