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