Index: gm/rebaseline_server/download_actuals.py |
diff --git a/gm/rebaseline_server/download_actuals.py b/gm/rebaseline_server/download_actuals.py |
index 2f92898fd4b0451feb3dd1895157f21b51283919..f874506dfcc5fa84e777933f096ab58872109c81 100755 |
--- a/gm/rebaseline_server/download_actuals.py |
+++ b/gm/rebaseline_server/download_actuals.py |
@@ -16,10 +16,14 @@ import posixpath |
import re |
import urllib2 |
+# Must fix up PYTHONPATH before importing from within Skia |
+# pylint: disable=W0611 |
+import fix_pythonpath |
+# pylint: enable=W0611 |
borenet
2014/07/11 12:59:11
Same comment.
|
+ |
# Imports from within Skia |
-import fix_pythonpath # must do this first |
-from pyutils import gs_utils |
-from pyutils import url_utils |
+from py.utils import gs_utils |
+from py.utils import url_utils |
import buildbot_globals |
import gm_json |