[devscripts/make_issue_template] Rework to use ISSUE_TEMPLATE.tmpl (Closes #8785)
parent
3842a3e652
commit
3bf1df51fd
|
@ -3,30 +3,27 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
import io
|
import io
|
||||||
import optparse
|
import optparse
|
||||||
import re
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = optparse.OptionParser(usage='%prog FILE')
|
parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
|
||||||
options, args = parser.parse_args()
|
options, args = parser.parse_args()
|
||||||
if len(args) != 1:
|
if len(args) != 2:
|
||||||
parser.error('Expected an filename')
|
parser.error('Expected an input and an output filename')
|
||||||
|
|
||||||
with io.open(args[0], encoding='utf-8') as inf:
|
infile, outfile = args
|
||||||
issue_template_text = inf.read()
|
|
||||||
|
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
|
# Get the version from youtube_dl/version.py without importing the package
|
||||||
exec(compile(open('youtube_dl/version.py').read(),
|
exec(compile(open('youtube_dl/version.py').read(),
|
||||||
'youtube_dl/version.py', 'exec'))
|
'youtube_dl/version.py', 'exec'))
|
||||||
|
|
||||||
issue_template_text = re.sub(
|
out = issue_template_tmpl % {'version': __version__}
|
||||||
r'(?<=\*\*)(?P<version>[0-9\.]+)(?=\*\*)',
|
|
||||||
__version__,
|
|
||||||
issue_template_text
|
|
||||||
)
|
|
||||||
|
|
||||||
with io.open(args[0], 'w', encoding='utf-8') as outf:
|
with io.open(outfile, 'w', encoding='utf-8') as outf:
|
||||||
outf.write(issue_template_text)
|
outf.write(out)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in New Issue