diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-26 15:27:52 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-26 15:27:52 -0700 |
commit | 4b88052208989ff8765bf08f5320bdc67759f7d8 (patch) | |
tree | 573e18585addb32d21f8c676e74c19f275dad382 /preprocessor.py | |
parent | 3dedf4c109b6883c8731918a8e59cb21b2bbec26 (diff) | |
parent | 2917a28242cbd201f637302aa848f053307a15ff (diff) |
Merge pull request #205 from kanzure/attempt-pokemontools-bump
Bump pokemontools to v1.4.1
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/preprocessor.py b/preprocessor.py index 54fc4cbff..5c71fe226 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -3,7 +3,7 @@ import sys -import extras.pokemontools.config as conf +import extras.pokemontools.configuration as configuration import extras.pokemontools.preprocessor as preprocessor from extras.pokemontools.crystal import ( @@ -50,7 +50,7 @@ def preprocess(config, macros, lines=None): return processor.preprocess(lines=lines) def main(): - config = conf.Config() + config = configuration.Config() macros = load_pokecrystal_macros() return preprocess(config, macros) |