Appended caller to search method call

Looked like a simple omission. Spotted by Jarenko.
This commit is contained in:
CloudKeeper 2021-08-16 03:15:45 +10:00 committed by GitHub
parent 5795ba1e91
commit 5515cb794f

View file

@ -88,7 +88,7 @@ here's how you'd find something only in your inventory:
You can also turn off the automatic error handling:
swords = self.search("Sword", quiet=True)
swords = self.caller.search("Sword", quiet=True)
With `quiet=True` the user will not be notified on zero or multi-match errors. Instead you are expected to handle this
yourself and what you get back is now a list of zero, one or more matches!