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

27 lines
570 B
Python
Raw Normal View History

2016-03-06 23:16:13 +01:00
#!/usr/bin/env python
from __future__ import unicode_literals
import optparse
2023-07-25 00:22:54 +01:00
import os.path
import sys
from utils import read_file, read_version, write_file
2016-03-06 23:16:13 +01:00
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
2023-07-25 00:22:54 +01:00
issue_template_tmpl = read_file(infile)
2016-03-06 23:16:13 +01:00
2023-07-25 00:22:54 +01:00
out = issue_template_tmpl % {'version': read_version()}
2016-03-06 23:16:13 +01:00
2023-07-25 00:22:54 +01:00
write_file(outfile, out)
2016-03-06 23:16:13 +01:00
if __name__ == '__main__':
main()