From c4c1a71641f26f2cd41b604c32ab4caadeccd64a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 16 Feb 2016 13:51:41 -0500 Subject: [PATCH] Update models.py --- bob/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/models.py b/bob/models.py index 0e9e28c..b0e2a2b 100644 --- a/bob/models.py +++ b/bob/models.py @@ -20,7 +20,7 @@ S3_PREFIX = os.environ.get('S3_PREFIX', '') # Append a slash for backwards compatibility. if S3_PREFIX: if not S3_PREFIX.endswith('/'): - '{0}/'.format(S3_PREFIX) + S3_PREFIX = '{0}/'.format(S3_PREFIX) DEPS_MARKER = '# Build Deps: ' BUILD_PATH_MARKER = '# Build Path: '