diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-11-27 23:56:10 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-11-27 23:56:10 +0100 |
commit | 89fb51dd2d4d7464b919f17b9d5d24a448319dfc (patch) | |
tree | 17f9771c8cc90f3d3e1c4214098e35b3f0157a2b /youtube_dl/FileDownloader.py | |
parent | 01ba00ca42899436c13439226ec61651a6ea6af0 (diff) |
Remove ur references for Python 3.3 support
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r-- | youtube_dl/FileDownloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 89beaf453..868023db9 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -201,7 +201,7 @@ class FileDownloader(object): def fixed_template(self): """Checks if the output template is fixed.""" - return (re.search(ur'(?u)%\(.+?\)s', self.params['outtmpl']) is None) + return (re.search(u'(?u)%\\(.+?\\)s', self.params['outtmpl']) is None) def trouble(self, message=None): """Determine action to take when a download problem appears. |