]> jfr.im git - yt-dlp.git/blobdiff - devscripts/make_issue_template.py
[docs] Improve manpage format (#2003)
[yt-dlp.git] / devscripts / make_issue_template.py
index 37cb0d4ee11987ae690b5f61306b5de1517f0a02..9020592317de7b7c2fa2626c104f3fd498b88973 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from __future__ import unicode_literals
 
 import io
@@ -16,9 +16,9 @@ def main():
     with io.open(infile, encoding='utf-8') as inf:
         issue_template_tmpl = inf.read()
 
-    # Get the version from youtube_dlc/version.py without importing the package
-    exec(compile(open('youtube_dlc/version.py').read(),
-                 'youtube_dlc/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': locals()['__version__']}