aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-02-21 11:53:48 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-04-08 21:50:07 +0200
commitc1ce6acdd73da7744f4bbe27698e96275467e14d (patch)
tree6afa5875373aa3e4c89551a7f1f7126cb68c8844 /devscripts
parent0d778b1db909c8d096be4e199384fff96a722fc9 (diff)
downloadyoutube-dl-c1ce6acdd73da7744f4bbe27698e96275467e14d.zip
youtube-dl-c1ce6acdd73da7744f4bbe27698e96275467e14d.tar.gz
youtube-dl-c1ce6acdd73da7744f4bbe27698e96275467e14d.tar.bz2
lazy extractors: Fix building with python2.6
Diffstat (limited to 'devscripts')
-rw-r--r--devscripts/make_lazy_extractors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/devscripts/make_lazy_extractors.py b/devscripts/make_lazy_extractors.py
index 8627d0b..5d0ddb4 100644
--- a/devscripts/make_lazy_extractors.py
+++ b/devscripts/make_lazy_extractors.py
@@ -30,7 +30,7 @@ class {name}(LazyLoadExtractor):
make_valid_template = '''
@classmethod
def _make_valid_url(cls):
- return {!r}
+ return {valid_url!r}
'''
@@ -44,7 +44,7 @@ def build_lazy_ie(ie, name):
s += getsource(ie.suitable)
if hasattr(ie, '_make_valid_url'):
# search extractors
- s += make_valid_template.format(ie._make_valid_url())
+ s += make_valid_template.format(valid_url=ie._make_valid_url())
return s
names = []
@@ -55,7 +55,7 @@ for ie in _ALL_CLASSES:
names.append(name)
module_contents.append(
- '_ALL_CLASSES = [{}]'.format(', '.join(names)))
+ '_ALL_CLASSES = [{0}]'.format(', '.join(names)))
module_src = '\n'.join(module_contents)