diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-01-15 13:32:33 +0100 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-08-11 14:26:01 +0200 |
commit | 888ad29be0bfaaa9a361ec4cae3755b59b71dadb (patch) | |
tree | 74f7f0bd68f568c41c5ca40ec7e779c195fcdf10 /monkey/prolog | |
parent | 819ab10281c9bd6c000364c3a243959edd18abf7 (diff) |
Use relative imports in monkey modules
Diffstat (limited to 'monkey/prolog')
-rw-r--r-- | monkey/prolog/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monkey/prolog/util.py b/monkey/prolog/util.py index 0ab3c8b..05505d0 100644 --- a/monkey/prolog/util.py +++ b/monkey/prolog/util.py @@ -5,7 +5,7 @@ import math import re from .lexer import lexer -from util import Token +from ..util import Token def tokenize(text): lexer.input(text) |