Changes between Version 1 and Version 2 of Ticket #32649, comment 3


Ignore:
Timestamp:
Apr 13, 2021, 5:03:06 PM (3 years ago)
Author:
Dlis

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32649, comment 3

    v1 v2  
    1515                text.unescape_string_literal(part)
    1616        except ValueError:
    17             parts = map(lambda t: str(t).strip('"').strip("'"), parts)
     17            parts = map(lambda t: t.strip('"').strip("'"), parts)
    1818        return super().get_search_results(request, queryset, ' '.join(parts))
    1919}}}
Back to Top