1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

Remove ur references for Python 3.3 support

This commit is contained in:
Philipp Hagemeister
2012-11-27 23:56:10 +01:00
parent 01ba00ca42
commit 89fb51dd2d
2 changed files with 4 additions and 4 deletions

View File

@@ -201,7 +201,7 @@ def to_cons_title(self, message):
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.