Skip to content
This repository was archived by the owner on Jun 19, 2022. It is now read-only.
This repository was archived by the owner on Jun 19, 2022. It is now read-only.

IndexError: list index out of range #1

Description

@wreleven

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions