summaryrefslogtreecommitdiff
path: root/preprocessor.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-09-24 10:46:53 -0500
committerBryan Bishop <kanzure@gmail.com>2013-09-24 10:46:53 -0500
commitfc90df98950619e20b899898c2bb28b4997df828 (patch)
tree6168e910355ae91510e8a7060e96b2ec31830276 /preprocessor.py
parent3dedf4c109b6883c8731918a8e59cb21b2bbec26 (diff)
bump pokemontools to v1.4.1
Note that gbz8disasm doesn't work at the moment.
Diffstat (limited to 'preprocessor.py')
-rw-r--r--preprocessor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/preprocessor.py b/preprocessor.py
index 54fc4cbff..da553081a 100644
--- a/preprocessor.py
+++ b/preprocessor.py
@@ -3,7 +3,7 @@
import sys
-import extras.pokemontools.config as conf
+import extras.pokemontools.configuration as configiguration
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)