2016-03-07 07:16:13 +09:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import optparse
|
2023-07-25 08:22:54 +09:00
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from utils import read_file, read_version, write_file
|
2016-03-07 07:16:13 +09:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2016-03-29 05:16:38 +09:00
|
|
|
parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
|
2016-03-07 07:16:13 +09:00
|
|
|
options, args = parser.parse_args()
|
2016-03-29 05:16:38 +09:00
|
|
|
if len(args) != 2:
|
|
|
|
parser.error('Expected an input and an output filename')
|
2016-03-07 07:16:13 +09:00
|
|
|
|
2016-03-29 05:16:38 +09:00
|
|
|
infile, outfile = args
|
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
issue_template_tmpl = read_file(infile)
|
2016-03-07 07:16:13 +09:00
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
out = issue_template_tmpl % {'version': read_version()}
|
2016-03-07 07:16:13 +09:00
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
write_file(outfile, out)
|
2016-03-07 07:16:13 +09:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|