aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-05-04 08:20:41 -0400
committerGitHub <noreply@github.com>2018-05-04 08:20:41 -0400
commit8e978dab17e18ff62a9eda3089ba2b072cd2429b (patch)
tree50b0e9da6ef2feae827d2cde7c6cabd14455d35a
parent9296a5475bfa7bc4b6ff4688ebf725e7d155b4bd (diff)
parent49b971abf1a07c7bbca81edbab4c3110c4585055 (diff)
downloadservo-8e978dab17e18ff62a9eda3089ba2b072cd2429b.tar.gz
servo-8e978dab17e18ff62a9eda3089ba2b072cd2429b.zip
Auto merge of #20738 - jdm:fix-manifest-update-again, r=nox
Adjust WPT manifest update python path to unbreak automated sync. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20738) <!-- Reviewable:end -->
-rw-r--r--tests/wpt/update/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/update/__init__.py b/tests/wpt/update/__init__.py
index 3b3693e3ea4..10e18b3eadf 100644
--- a/tests/wpt/update/__init__.py
+++ b/tests/wpt/update/__init__.py
@@ -13,7 +13,7 @@ here = os.path.split(__file__)[0]
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptrunner")))
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptserve")))
-sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "tests", "tools", "scripts")))
+sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools")))
from wptrunner.update import setup_logging, WPTUpdate
from wptrunner.update.base import exit_unclean