summaryrefslogtreecommitdiff
path: root/kbas
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-02-10 20:35:00 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-02-10 20:35:00 +0000
commite970fd17f7fb086079003282ef8a3799a8fd789c (patch)
tree0a6216afd6daa724b39e4748967dea767de39e10 /kbas
parentb89174aaa5b5a6f3a3d569639fd28eb82a26e8c2 (diff)
downloadybd-e970fd17f7fb086079003282ef8a3799a8fd789c.tar.gz
Pep8
Diffstat (limited to 'kbas')
-rwxr-xr-xkbas/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbas/__main__.py b/kbas/__main__.py
index 7ffca44..1926f29 100755
--- a/kbas/__main__.py
+++ b/kbas/__main__.py
@@ -123,7 +123,7 @@ class KeyedBinaryArtifactServer(object):
cache_id = request.forms.get('filename')
if os.path.isdir(os.path.join(app.config['artifact-dir'], cache_id)):
if cache.check(cache_id) == request.forms.get('checksum', 'XYZ'):
- response.status = 777 # this is the same binary we have
+ response.status = 777 # this is the same binary we have
return
response.status = 405 # method not allowed, this artifact exists
return