changelog, codestyle

This commit is contained in:
jonaswinkler 2020-11-30 16:25:10 +01:00
parent f156f05b37
commit e1853583b0
2 changed files with 3 additions and 3 deletions

View File

@ -13,8 +13,8 @@ paperless-ng 0.9.4
* Paperless now supports searching by tags, types and dates. In order to have this applied to your
existing documents, you need to perform a ``document_index reindex`` management command
(see :ref:`administration-index`)
that adds tags to your search index. You only need to do this once, so that paperless can find
your documents by tags,types and dates. Paperless keeps your index updated after that whenever
that adds the new data to the search index. You only need to do this once, so that paperless can find
your documents by tags,types and dates. Paperless keeps the index updated after that whenever
something changes.
* Paperless now has spelling corrections ("Did you mean") for misstyped queries.
* The documentation contains :ref:`information about the query syntax <basic-searching>`.

View File

@ -217,7 +217,7 @@ class SearchView(APIView):
}
def get(self, request, format=None):
if not 'query' in request.query_params:
if 'query' not in request.query_params:
return Response({
'count': 0,
'page': 0,