aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_decorators.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-11-11 14:38:56 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-11-11 14:38:56 -0500
commit1eb56ef02a7fa825be99ddfb95f217a07dab1cdf (patch)
treebf0857b7f42dec7db03910799eed7e5dda5e7c2b /test/test_decorators.py
parent4ab9664a515c265238d420b0373f7225fe2e53c7 (diff)
downloadexternal_python_mako-1eb56ef02a7fa825be99ddfb95f217a07dab1cdf.tar.gz
external_python_mako-1eb56ef02a7fa825be99ddfb95f217a07dab1cdf.tar.bz2
external_python_mako-1eb56ef02a7fa825be99ddfb95f217a07dab1cdf.zip
- first pass at running a py3k compatible base in py2k as well.
having some weird unicode issues I can't debug; the meaning of str.encode() seems to be changing globally somehow
Diffstat (limited to 'test/test_decorators.py')
-rw-r--r--test/test_decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_decorators.py b/test/test_decorators.py
index fc8768b..74e674c 100644
--- a/test/test_decorators.py
+++ b/test/test_decorators.py
@@ -1,7 +1,7 @@
from mako.template import Template
from mako import lookup
import unittest
-from util import flatten_result, result_lines
+from .util import flatten_result, result_lines
class DecoratorTest(unittest.TestCase):
def test_toplevel(self):