aboutsummaryrefslogtreecommitdiff
path: root/devscripts/make_issue_template.py
diff options
context:
space:
mode:
authorPccode66 <49125134+Pccode66@users.noreply.github.com>2021-02-24 15:45:56 -0300
committerGitHub <noreply@github.com>2021-02-25 00:15:56 +0530
commit7a5c1cfe93924351387b44919b3c0b2f66c4b883 (patch)
tree6da63f3d7b16cf7d4b9fdb29b029125cab8bd0d3 /devscripts/make_issue_template.py
parentc4218ac3f1146daac20308439cdc374e3561101a (diff)
Completely change project name to yt-dlp (#85)
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
Diffstat (limited to 'devscripts/make_issue_template.py')
-rw-r--r--devscripts/make_issue_template.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/devscripts/make_issue_template.py b/devscripts/make_issue_template.py
index 37cb0d4ee..13f337c82 100644
--- a/devscripts/make_issue_template.py
+++ b/devscripts/make_issue_template.py
@@ -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__']}