From a64657988a50522885618998e7f14168c299a19b Mon Sep 17 00:00:00 2001 From: "Eevee (Lexy Munroe)" Date: Wed, 24 Aug 2016 15:43:15 -0700 Subject: Fix most Python 3 compat issues with futurize --stage1 --- pokemontools/preprocessor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pokemontools/preprocessor.py') 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, -- cgit v1.2.3