summaryrefslogtreecommitdiff
path: root/devscripts
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-29 02:16:38 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-29 02:16:38 +0600
commit3bf1df51fda4189eaa9164134b56393e2c4a7f72 (patch)
tree0f8470b733f0fe7aa69446acf77730cbdf78ba0f /devscripts
parent3842a3e6524c8704d4295f65e6c0bce578d69e93 (diff)
[devscripts/make_issue_template] Rework to use ISSUE_TEMPLATE.tmpl (Closes #8785)
Diffstat (limited to 'devscripts')
-rw-r--r--devscripts/make_issue_template.py25
1 files changed, 11 insertions, 14 deletions
diff --git a/devscripts/make_issue_template.py b/devscripts/make_issue_template.py
index 2fdd05035..e5564bac1 100644
--- a/devscripts/make_issue_template.py
+++ b/devscripts/make_issue_template.py
@@ -3,30 +3,27 @@ from __future__ import unicode_literals
import io
import optparse
-import re
def main():
- parser = optparse.OptionParser(usage='%prog FILE')
+ parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
options, args = parser.parse_args()
- if len(args) != 1:
- parser.error('Expected an filename')
+ if len(args) != 2:
+ parser.error('Expected an input and an output filename')
- with io.open(args[0], encoding='utf-8') as inf:
- issue_template_text = inf.read()
+ infile, outfile = args
+
+ with io.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'))
+ 'youtube_dl/version.py', 'exec'))
- issue_template_text = re.sub(
- r'(?<=\*\*)(?P<version>[0-9\.]+)(?=\*\*)',
- __version__,
- issue_template_text
- )
+ out = issue_template_tmpl % {'version': __version__}
- with io.open(args[0], 'w', encoding='utf-8') as outf:
- outf.write(issue_template_text)
+ with io.open(outfile, 'w', encoding='utf-8') as outf:
+ outf.write(out)
if __name__ == '__main__':
main()