diff --git a/corrlib/find.py b/corrlib/find.py index 0c5f9a6..2b9973f 100644 --- a/corrlib/find.py +++ b/corrlib/find.py @@ -148,7 +148,7 @@ def find_record(path, ensemble, correlator_name, code, project=None, parameters= results = _db_lookup(db, ensemble, correlator_name,code, project, parameters=parameters, created_before=created_before, created_after=created_after, updated_before=updated_before, updated_after=updated_after, revision=revision) if code == "sfcf": results = sfcf_filter(results, **kwargs) - print("Found " + str(len(results)) + " results") + print("Found " + str(len(results)) + " result" + ("s" if len(results)>1 else "")) return results.reset_index()