diff options
author | yenatch <yenatch@gmail.com> | 2013-09-26 01:57:29 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-26 01:57:29 -0400 |
commit | 5f0bd7a2fefbb9354301a3926b011d055e650c56 (patch) | |
tree | b174d76921742eb1d370567533ec126f1e7c7dad | |
parent | 33c8e4147c9a188b677a0995e8f9ce0760a2d60e (diff) |
use config instead of configuration
this was kind of overzealous
-rw-r--r-- | pokemontools/map_editor.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pokemontools/map_editor.py b/pokemontools/map_editor.py index 208cc49..9cd29ea 100644 --- a/pokemontools/map_editor.py +++ b/pokemontools/map_editor.py @@ -6,12 +6,12 @@ from ttk import Frame, Style import PIL from PIL import Image, ImageTk -import configuration -conf = configuration.Config() +import config +conf = config.Config() -version = 'crystal' -#version = 'red' +#version = 'crystal' +version = 'red' if version == 'crystal': map_dir = os.path.join(conf.path, 'maps/') |