all repos — Legends-RPG @ ce2b2c848151d5a9365aee0fc44c1037638725ed

A fantasy mini-RPG built with Python and Pygame.

Fixed a relative import
Justin Armstrong justinmeister@gmail.com
Thu, 03 Apr 2014 22:02:10 -0700
commit

ce2b2c848151d5a9365aee0fc44c1037638725ed

parent

879c70982bb89a9271247c1014e1a314ff283c2e

2 files changed, 3 insertions(+), 3 deletions(-)

jump to
M data/tilemap.pydata/tilemap.py

@@ -3,8 +3,8 @@

import os import pygame as pg import tools, setup -from components import person, portal -import constants as c +from . components import person, portal +from . import constants as c def create_town_sprite_sheet_dict():
M data/tools.pydata/tools.py

@@ -2,7 +2,7 @@ __author__ = 'justinarmstrong'

import os import pygame as pg -import constants as c +from . import constants as c class Control(object): """