diff options
author | yenatch <yenatch@gmail.com> | 2013-12-07 19:58:30 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-07 20:02:49 -0500 |
commit | 23268279f2e36ead00de93724e5ac5d8dba6194f (patch) | |
tree | 3f2960a6c7726df9fea3652b6c3e2332deaa7ef7 /preprocessor.py | |
parent | 120ba9664992cada4781e4d524304e4499e9083f (diff) |
prequeue: less wasteful stdout rerouting
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py index 317a2fe6..cb9353af 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -279,7 +279,9 @@ def setup_processor(): def main(): processor = setup_processor() - processor.preprocess() + output = processor.preprocess() + processor.update_globals() + return output if __name__ == '__main__': main() |