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/disassemble_map_scripts.py | |
parent | 0e1798937a4bf723813574281d0dc12c471c9199 (diff) |
Fix most Python 3 compat issues with futurize --stage1
Diffstat (limited to 'pokemontools/disassemble_map_scripts.py')
-rw-r--r-- | pokemontools/disassemble_map_scripts.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pokemontools/disassemble_map_scripts.py b/pokemontools/disassemble_map_scripts.py index f51fb92..28c2ec1 100644 --- a/pokemontools/disassemble_map_scripts.py +++ b/pokemontools/disassemble_map_scripts.py @@ -3,9 +3,10 @@ Dump out asm for scripting things in bank $25. This script will modify main.asm and insert all scripting commands. """ +from __future__ import absolute_import -import crystal -import gbz80disasm +from . import crystal +from . import gbz80disasm rom = crystal.load_rom() roml = [ord(x) for x in rom] |