]> jfr.im git - yt-dlp.git/blobdiff - devscripts/make_issue_template.py
[cleanup] Sort imports
[yt-dlp.git] / devscripts / make_issue_template.py
index e5564bac1e111fa5b7c07f50f2836761000b691f..878b94166a5fe1c7ccb6ed56696d4de0dfa7950b 100644 (file)
@@ -1,6 +1,4 @@
-#!/usr/bin/env python
-from __future__ import unicode_literals
-
+#!/usr/bin/env python3
 import io
 import optparse
 
@@ -13,17 +11,18 @@ def main():
 
     infile, outfile = args
 
-    with io.open(infile, encoding='utf-8') as inf:
+    with open(infile, encoding='utf-8') as inf:
         issue_template_tmpl = inf.read()
 
-    # Get the version from youtube_dl/version.py without importing the package
-    exec(compile(open('youtube_dl/version.py').read(),
-                 'youtube_dl/version.py', 'exec'))
+    # Get the version from yt_dlp/version.py without importing the package
+    exec(compile(open('yt_dlp/version.py').read(),
+                 'yt_dlp/version.py', 'exec'))
 
-    out = issue_template_tmpl % {'version': __version__}
+    out = issue_template_tmpl % {'version': locals()['__version__']}
 
-    with io.open(outfile, 'w', encoding='utf-8') as outf:
+    with open(outfile, 'w', encoding='utf-8') as outf:
         outf.write(out)
 
+
 if __name__ == '__main__':
     main()