From 7a5c1cfe93924351387b44919b3c0b2f66c4b883 Mon Sep 17 00:00:00 2001 From: Pccode66 <49125134+Pccode66@users.noreply.github.com> Date: Wed, 24 Feb 2021 15:45:56 -0300 Subject: 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 --- devscripts/make_issue_template.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'devscripts/make_issue_template.py') 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__']} -- cgit v1.2.3