Skip to content

Commit 9ee7525

Browse files
author
Matthew Fisher
committed
fix(controller): remove print calls
1 parent cb82f62 commit 9ee7525

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

controller/registry/private.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ def _put_checksum(image, layer, cookies):
147147
r = _api_call(url, headers=headers, cookies=cookies, request_type='PUT')
148148
if not r.status_code == 200:
149149
raise RuntimeError("PUT Checksum Error ({}: {})".format(r.status_code, r.text))
150-
print r.json()
151150

152151

153152
def _put_tag(image_id, repository_path, tag):
@@ -156,7 +155,6 @@ def _put_tag(image_id, repository_path, tag):
156155
r = _api_call(url, data=json.dumps(image_id), request_type='PUT')
157156
if not r.status_code == 200:
158157
raise RuntimeError("PUT Tag Error ({}: {})".format(r.status_code, r.text))
159-
print r.json()
160158

161159

162160
# utility functions

0 commit comments

Comments
 (0)