diff options
author | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 15:43:15 -0700 |
---|---|---|
committer | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 15:43:15 -0700 |
commit | a64657988a50522885618998e7f14168c299a19b (patch) | |
tree | 9240aab0fba75befe75d6059d62bea8a3e0fbd4e /pokemontools/preprocessor.py | |
parent | 0e1798937a4bf723813574281d0dc12c471c9199 (diff) |
Fix most Python 3 compat issues with futurize --stage1
Diffstat (limited to 'pokemontools/preprocessor.py')
-rw-r--r-- | pokemontools/preprocessor.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pokemontools/preprocessor.py b/pokemontools/preprocessor.py index 954263a..effbd2e 100644 --- a/pokemontools/preprocessor.py +++ b/pokemontools/preprocessor.py @@ -2,12 +2,13 @@ """ Basic preprocessor for both pokecrystal and pokered. """ +from __future__ import absolute_import import os import sys -import exceptions -import crystal +from . import exceptions +from . import crystal chars = { "ガ": 0x05, |