Changes repr method of Phrase to label the object Phrase instead of PlainText

pull/6605/head
alistairclark 2020-11-27 12:46:45 +00:00 zatwierdzone przez Karl Hobley
rodzic fe427efb75
commit 25b9139a7c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -45,7 +45,7 @@ class Phrase(SearchQuery):
self.query_string = query_string
def __repr__(self):
return '<PlainText {}>'.format(repr(self.query_string))
return '<Phrase {}>'.format(repr(self.query_string))
class MatchAll(SearchQuery):