Index: gm/rebaseline_server/base_unittest.py |
diff --git a/gm/rebaseline_server/base_unittest.py b/gm/rebaseline_server/base_unittest.py |
index f8fdff19c90a0e28a2210b5d927b29c80be4c71f..46d1bb81a0ecb8e4a7ff4971a83ef5ff59863c22 100755 |
--- a/gm/rebaseline_server/base_unittest.py |
+++ b/gm/rebaseline_server/base_unittest.py |
@@ -21,6 +21,7 @@ TRUNK_DIR = os.path.abspath(os.path.join(PARENT_DIR, os.pardir, os.pardir)) |
TOOLS_DIR = os.path.join(TRUNK_DIR, 'tools') |
if TOOLS_DIR not in sys.path: |
sys.path.append(TOOLS_DIR) |
+sys.path.insert(0, TOOLS_DIR) # EPOGER: CLEAN THIS UP! The import of tests.base_unittest fails unless I do this. |
epoger
2014/07/31 15:18:31
Throughout this patchset, there are these "EPOGER"
|
import tests.base_unittest as superclass_module |