From 969a9618ccf59850cca5d266ce00244322b52e5f Mon Sep 17 00:00:00 2001 From: github-pba Date: Thu, 18 Jul 2019 08:45:55 +0200 Subject: [PATCH] Fix for issue 420 --- examples/search_sighting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/search_sighting.py b/examples/search_sighting.py index 8e517c7..67e9b4e 100644 --- a/examples/search_sighting.py +++ b/examples/search_sighting.py @@ -14,7 +14,7 @@ def init(url, key): def search_sighting(m, context, out=None, **kwargs): - result = m.sighting_search(context, **kwargs) + result = m.search_sightings(context, **kwargs) if out is None: print(json.dumps(result['response'])) else: