mirror of https://github.com/pret/pokecrystal.git
reset stdout in prequeue.py near end
Other output shouldn't be dumped into items/item_attributes.tx by default.
This commit is contained in:
parent
70be18427b
commit
7eaf5bf726
|
@ -13,11 +13,16 @@ def main():
|
||||||
macros = preprocessor.load_pokecrystal_macros()
|
macros = preprocessor.load_pokecrystal_macros()
|
||||||
macro_table = preprocessor.make_macro_table(macros)
|
macro_table = preprocessor.make_macro_table(macros)
|
||||||
|
|
||||||
|
stdout = sys.stdout
|
||||||
|
|
||||||
for source in sys.argv[1:]:
|
for source in sys.argv[1:]:
|
||||||
dest = os.path.splitext(source)[0] + '.tx'
|
dest = os.path.splitext(source)[0] + '.tx'
|
||||||
sys.stdin = open(source, 'r')
|
sys.stdin = open(source, 'r')
|
||||||
sys.stdout = open(dest, 'w')
|
sys.stdout = open(dest, 'w')
|
||||||
preprocessor.preprocess(macro_table)
|
preprocessor.preprocess(macro_table)
|
||||||
|
|
||||||
|
# reset stdout
|
||||||
|
sys.stdout = stdout
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in New Issue