aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2008-07-22 09:53:05 +0200
committerRicardo Garcia <devnull@localhost>2008-07-22 09:53:05 +0200
commitf97c8db74ef927216d3ccfb719602e7335f4dee5 (patch)
tree569422d650a66ed9abf491bbf85736009c69e3f3
parent22899cea59bf31fb31efab9c03a92214684f94d6 (diff)
downloadyoutube-dl-f97c8db74ef927216d3ccfb719602e7335f4dee5.tar.xz
Improve some unicode regular expressions
-rwxr-xr-xyoutube-dl8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube-dl b/youtube-dl
index 0df6ba141..914cce37b 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -155,7 +155,7 @@ class FileDownloader(object):
def fixed_template(self):
"""Checks if the output template is fixed."""
- return (re.search(ur'%\(.+?\)s', self._params['outtmpl']) is None)
+ return (re.search(ur'(?u)%\(.+?\)s', self._params['outtmpl']) is None)
def download(self, url_list):
"""Download a given list of URLs."""
@@ -419,11 +419,11 @@ class YoutubeIE(InfoExtractor):
self.to_stderr('ERROR: Unable to extract video title')
return [None]
video_title = mobj.group(1).decode('utf-8')
- video_title = re.sub(u'&(.+?);', lambda x: unichr(htmlentitydefs.name2codepoint[x.group(1)]), video_title)
+ video_title = re.sub(ur'(?u)&(.+?);', lambda x: unichr(htmlentitydefs.name2codepoint[x.group(1)]), video_title)
# simplified title
- simple_title = re.sub(u'([^%s]+)' % simple_title_chars, u'_', video_title)
- simple_title = simple_title.strip(u'_')
+ simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
+ simple_title = simple_title.strip(ur'_')
# Return information
return [{