X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fmake_issue_template.py;h=b7ad23d8363005c7f62056822219d7772e1d91d5;hb=a5b6102ea893d6943f9ffa9fc0677229c56c99ca;hp=2fdd050353a4aa664ddbe1cab8563f4fce856172;hpb=7710bdf4e813879dbd8c5857e13a2c64e0ce8837;p=youtube-dl diff --git a/devscripts/make_issue_template.py b/devscripts/make_issue_template.py index 2fdd05035..b7ad23d83 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[0-9\.]+)(?=\*\*)', - __version__, - issue_template_text - ) + out = issue_template_tmpl % {'version': locals()['__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()