diff options
author | necoro <> | 2007-08-27 07:30:38 +0000 |
---|---|---|
committer | necoro <> | 2007-08-27 07:30:38 +0000 |
commit | 8c066e79b03ad4e20a9f7c4ae36a9e247b79a8eb (patch) | |
tree | cbc6522de7532adc6a85ff6e816e186b077f2cc4 /portato/TEST_helper.py | |
parent | c16b547f2c2bc23bef3a93b1987715c00c521718 (diff) | |
download | portato-8c066e79b03ad4e20a9f7c4ae36a9e247b79a8eb.tar.gz portato-8c066e79b03ad4e20a9f7c4ae36a9e247b79a8eb.tar.bz2 portato-8c066e79b03ad4e20a9f7c4ae36a9e247b79a8eb.zip |
Change to absolute_imports; Warning: definitly broken
Diffstat (limited to '')
-rw-r--r-- | portato/TEST_helper.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/portato/TEST_helper.py b/portato/TEST_helper.py index cce0b61..88c4cd3 100644 --- a/portato/TEST_helper.py +++ b/portato/TEST_helper.py @@ -1,7 +1,9 @@ #!/usr/bin/python +from __future__ import absolute_import + import unittest -import helper +import .helper class HelperTest (unittest.TestCase): |