diff options
-rw-r--r-- | fuzzycat/matching.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/matching.py b/fuzzycat/matching.py index 413665a..df9617b 100644 --- a/fuzzycat/matching.py +++ b/fuzzycat/matching.py @@ -65,7 +65,7 @@ def match_release_fuzzy( continue r = api.lookup_release(**{attr: value}) if r: - return r + return [r] body = { "query": { |