1
0
Fork 0
mirror of https://github.com/Oreolek/gamebookformat.git synced 2024-05-01 16:49:23 +03:00

Print command-line used when building example gamebook.

This commit is contained in:
Pelle Nilsson 2013-06-29 22:05:12 +02:00
parent 5aa26167b5
commit 03acdf1938

View file

@ -18,5 +18,7 @@ if __name__ == '__main__':
optionsfile = open(optionsfilename) optionsfile = open(optionsfilename)
options += ' ' + ' '.join(optionsfile.readlines()) options += ' ' + ' '.join(optionsfile.readlines())
optionsfile.close() optionsfile.close()
os.system("python2.7 ./formatgamebook.py %s %s %s" % ( command = "python2.7 ./formatgamebook.py %s %s %s" % (
options, infile, outfile)) options, infile, outfile)
print command
os.system(command)