You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
Throws and error if you include an empty string list property.
Line 474 of /search/ in get_search_phrases:
if (isinstance(values[0], basestring) and
Easy fix would be:
if (len(values) > 0 and isinstance(values[0], basestring) and
Though it could be tackled many many ways.
The text was updated successfully, but these errors were encountered: