mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
Fix missing concatenation operator
Co-Authored-By: SimonSapin <simon.sapin@exyr.org>
This commit is contained in:
parent
75b67a63e6
commit
bc286c9ee3
1 changed files with 1 additions and 1 deletions
|
@ -546,7 +546,7 @@ class PackageCommands(CommandBase):
|
||||||
import boto3
|
import boto3
|
||||||
|
|
||||||
def get_taskcluster_secret(name):
|
def get_taskcluster_secret(name):
|
||||||
url = os.environ["TASKCLUSTER_PROXY_URL"] "/secrets/v1/secret/project/servo/" + name
|
url = os.environ["TASKCLUSTER_PROXY_URL"] + "/secrets/v1/secret/project/servo/" + name
|
||||||
return json.load(urllib.urlopen(url))["secret"]
|
return json.load(urllib.urlopen(url))["secret"]
|
||||||
|
|
||||||
def get_s3_secret():
|
def get_s3_secret():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue