From 5515cb794f44875e243e8214f40d4829cbd2f990 Mon Sep 17 00:00:00 2001 From: CloudKeeper <46334817+CloudKeeper@users.noreply.github.com> Date: Mon, 16 Aug 2021 03:15:45 +1000 Subject: [PATCH] Appended caller to search method call Looked like a simple omission. Spotted by Jarenko. --- docs/source/Howto/Starting/Part1/Searching-Things.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Howto/Starting/Part1/Searching-Things.md b/docs/source/Howto/Starting/Part1/Searching-Things.md index d0b13edded..08e6363711 100644 --- a/docs/source/Howto/Starting/Part1/Searching-Things.md +++ b/docs/source/Howto/Starting/Part1/Searching-Things.md @@ -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!