bump and support latest pokemontools

This commit is contained in:
Bryan Bishop 2013-09-16 12:42:46 -05:00
parent e47308a1f8
commit fecbe4a60c
2 changed files with 5 additions and 4 deletions

2
extras

@ -1 +1 @@
Subproject commit 7aa016fb528bcc8dcb30c6a887957851623eccc0 Subproject commit 2374a9ce905ccc4c701f81904b01019641e884b5

View file

@ -1,6 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import extras.pokemontools.preprocessor as preprocessor import extras.pokemontools.preprocessor as preprocessor
import extras.pokemontools.configuration as configuration
import sys import sys
@ -261,6 +262,6 @@ chars = {
preprocessor.chars = chars preprocessor.chars = chars
macros = [] config = configuration.Config()
macro_table = preprocessor.make_macro_table(macros) processor = preprocessor.Preprocessor(config, [])
preprocessor.preprocess(macro_table) processor.preprocess()