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