diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 11:07:49 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 11:07:49 -0500 |
commit | 7eaf5bf72656fa84d2aa94a0ea6e534120f40131 (patch) | |
tree | e9e6a18c3d20eeda5d2e111d786e0efd12f164a2 | |
parent | 70be18427b069cae7ffcfb84811ae268fa18afce (diff) |
reset stdout in prequeue.py near end
Other output shouldn't be dumped into items/item_attributes.tx by
default.
-rw-r--r-- | prequeue.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/prequeue.py b/prequeue.py index 58790f702..6efc519d1 100644 --- a/prequeue.py +++ b/prequeue.py @@ -13,11 +13,16 @@ def main(): macros = preprocessor.load_pokecrystal_macros() macro_table = preprocessor.make_macro_table(macros) + stdout = sys.stdout + for source in sys.argv[1:]: dest = os.path.splitext(source)[0] + '.tx' sys.stdin = open(source, 'r') sys.stdout = open(dest, 'w') preprocessor.preprocess(macro_table) + # reset stdout + sys.stdout = stdout + if __name__ == '__main__': main() |