1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-04-26 00:33:26 +00:00
Files
youtube-dl/devscripts/make_issue_template.py
T

30 lines
795 B
Python
Raw Normal View History

2016-03-06 23:16:13 +01:00
#!/usr/bin/env python
from __future__ import unicode_literals
import io
import optparse
def main():
parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
2016-03-06 23:16:13 +01:00
options, args = parser.parse_args()
if len(args) != 2:
parser.error('Expected an input and an output filename')
2016-03-06 23:16:13 +01:00
infile, outfile = args
with io.open(infile, encoding='utf-8') as inf:
issue_template_tmpl = inf.read()
2016-03-06 23:16:13 +01:00
# 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'))
2016-03-06 23:16:13 +01:00
out = issue_template_tmpl % {'version': locals()['__version__']}
2016-03-06 23:16:13 +01:00
with io.open(outfile, 'w', encoding='utf-8') as outf:
outf.write(out)
2016-03-06 23:16:13 +01:00
if __name__ == '__main__':
main()