Fix handling of Shippable env vars.

This commit is contained in:
Matt Clay 2017-05-05 17:16:50 +08:00
parent 58c1a9dd94
commit 1582e9bf7d

View file

@ -319,7 +319,7 @@ class CloudProvider(CloudBase):
:rtype: str
"""
if is_shippable():
return 'shippable-%d-%d' % (
return 'shippable-%s-%s' % (
os.environ['SHIPPABLE_BUILD_NUMBER'],
os.environ['SHIPPABLE_JOB_NUMBER'],
)