aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/routes.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-07-25 19:33:24 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-07-25 19:33:24 -0700
commitd24f2569d791fc0145639115aed4ccd6bed03466 (patch)
treef480a053841182f444f0e6942d6d015276aebf88 /python/fatcat/routes.py
parent3bfc43df5810196c3aeafa5e0fc32308c55d76b2 (diff)
downloadfatcat-d24f2569d791fc0145639115aed4ccd6bed03466.tar.gz
fatcat-d24f2569d791fc0145639115aed4ccd6bed03466.zip
test fixes
Diffstat (limited to 'python/fatcat/routes.py')
-rw-r--r--python/fatcat/routes.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/fatcat/routes.py b/python/fatcat/routes.py
index 209a7676..965040f5 100644
--- a/python/fatcat/routes.py
+++ b/python/fatcat/routes.py
@@ -17,7 +17,7 @@ def container_history(ident):
history = api.get_container_history(ident)
except ApiException as ae:
abort(ae.status)
- print(history)
+ #print(history)
return render_template('entity_history.html',
page_title=entity.name,
entity_type="container",
@@ -262,7 +262,6 @@ def editgroup_view(ident):
try:
entity = api.get_editgroup(str(ident))
except ApiException as ae:
- print(ae.body)
abort(ae.status)
return render_template('editgroup_view.html', editgroup=entity)