Browse Source

[devscripts/make_issue_template] Fix NameError under python3

Sergey M․ 9 years ago
parent
commit
89924f8230
1 changed files with 2 additions and 0 deletions
  1. 2 0
      devscripts/make_issue_template.py

+ 2 - 0
devscripts/make_issue_template.py

@@ -16,6 +16,8 @@ def main():
     with io.open(infile, encoding='utf-8') as inf:
     with io.open(infile, encoding='utf-8') as inf:
         issue_template_tmpl = inf.read()
         issue_template_tmpl = inf.read()
 
 
+    __version__ = None
+
     # Get the version from youtube_dl/version.py without importing the package
     # Get the version from youtube_dl/version.py without importing the package
     exec(compile(open('youtube_dl/version.py').read(),
     exec(compile(open('youtube_dl/version.py').read(),
                  'youtube_dl/version.py', 'exec'))
                  'youtube_dl/version.py', 'exec'))