diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-04-03 12:43:55 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-04-03 12:43:55 -0700 |
commit | 53223835d21e158536dab569d5fe4c6ecea6d6ce (patch) | |
tree | e4f66788b87e107bd34a9aefe9a42193ed95d1d7 | |
parent | 9fc10fc243cdcb0bf2c01d36254d55baae411153 (diff) | |
download | fatcat-covid19-53223835d21e158536dab569d5fe4c6ecea6d6ce.tar.gz fatcat-covid19-53223835d21e158536dab569d5fe4c6ecea6d6ce.zip |
search: remove debugging statement
-rw-r--r-- | fatcat_covid19/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_covid19/search.py b/fatcat_covid19/search.py index 08b6466..921520c 100644 --- a/fatcat_covid19/search.py +++ b/fatcat_covid19/search.py @@ -42,7 +42,7 @@ def do_search(index, request, limit=30, offset=0, deep_page_limit=2000): for k in highlights: r['_highlights'] += highlights[k] results.append(r) - print(json.dumps(results, indent=2)) + #print(json.dumps(results, indent=2)) for h in results: # Handle surrogate strings that elasticsearch returns sometimes, # probably due to mangled data processing in some pipeline. |