diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-02-25 15:25:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 15:25:23 -0500 |
commit | 4547a171211f7d0257411de764d160eb7daacb59 (patch) | |
tree | a4ff10a281629b5600b5fae217c7b43d0affc85c | |
parent | 9e928a487eadcb9695d20528d558126ab9af50e6 (diff) | |
download | servo-4547a171211f7d0257411de764d160eb7daacb59.tar.gz servo-4547a171211f7d0257411de764d160eb7daacb59.zip |
Fix doc build.
-rw-r--r-- | etc/taskcluster/decision_task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 67ea48de4fc..10ad08cbeac 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -238,7 +238,7 @@ def upload_docs(): .with_features("taskclusterProxy") .with_scopes("secrets:get:project/servo/doc.servo.org") .with_env(PY="""if 1: - import urllib, json, os + import urllib.request, json, os root_url = os.environ["TASKCLUSTER_PROXY_URL"] url = root_url + "/api/secrets/v1/secret/project/servo/doc.servo.org" token = json.load(urllib.request.urlopen(url))["secret"]["token"] |