diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-08 22:55:25 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-08 22:55:25 -0500 |
commit | 0eb5468d220606ad4c2cc93df96faf7a338c958c (patch) | |
tree | ffb2032e809b664371e3068820b7560589397988 /pokemontools/vba/vba.py | |
parent | 37b9c79b4ce7564fe09a48df61b01d97c55bf18c (diff) |
fix some imports in pokemontools/vba/vba.py
This file is meant to be run while under jython, so it's not completely
fair to run it through python2.7 when testing. But whatever.
Diffstat (limited to 'pokemontools/vba/vba.py')
-rw-r--r-- | pokemontools/vba/vba.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/vba/vba.py b/pokemontools/vba/vba.py index ea7bb2e..3e0b7dd 100644 --- a/pokemontools/vba/vba.py +++ b/pokemontools/vba/vba.py @@ -87,9 +87,9 @@ from copy import copy import unittest # for converting bytes to readable text -from chars import chars +from pokemontools.chars import chars -from map_names import map_names +from pokemontools.map_names import map_names # for _check_java_library_path from java.lang import System |