diff options
author | yenatch <yenatch@gmail.com> | 2014-02-01 02:47:25 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-01 02:47:25 -0500 |
commit | 65efbe55e7648b6aa1a122155222e73b74dc31c1 (patch) | |
tree | 0d00c6f0ae296ad29b458c9f32ecca26446c7312 | |
parent | 821f2c2ea0f9dc482520f2cf9c45ccfaca8bbb29 (diff) |
preprocessor: actually call update_globals()
This is about to be removed, but it may as well work first.
-rw-r--r-- | preprocessor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py index f5bc08637..b9165e60e 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -66,7 +66,7 @@ def setup_processor(): def main(): processor = setup_processor() processor.preprocess() - processor.update_globals + processor.update_globals() # only run against stdin when not included as a module if __name__ == "__main__": |