From e6bcec87f5ff1b3c2b884f4689fc68abd7d9819a Mon Sep 17 00:00:00 2001 From: Samuel Loury Date: Fri, 3 Oct 2014 12:24:39 +0200 Subject: [PATCH] Fix the example of call to ListPage The defined method is called iter_accounts and not iter_accounts_list. --- docs/source/guides/module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/guides/module.rst b/docs/source/guides/module.rst index 8772b4f2..a26e9191 100644 --- a/docs/source/guides/module.rst +++ b/docs/source/guides/module.rst @@ -255,7 +255,7 @@ For example, we can now implement some methods in ``ExampleBrowser``:: def iter_accounts_list(self): self.accounts.stay_or_go() - return self.page.iter_accounts_list() + return self.page.iter_accounts() When calling the :func:`go() ` method, it reads the first regexp url of our :class:`URL ` object, and go on the page.