From: Mattia Rizzolo <mattia@debian.org>
Date: Thu, 9 Mar 2017 13:16:21 +0100
X-Dgit-Generated: 1.9.2-1.1 273b61f7d451c9d273083bb44de2fb946592f3c7
Subject: Fix code in example file

Closes: #849526
Thanks: Russell Stuart for the patch.
Signed-off-by: Mattia Rizzolo <mattia@debian.org>

---

--- beanbag-1.9.2.orig/docs/index.rst
+++ beanbag-1.9.2/docs/index.rst
@@ -25,7 +25,7 @@ A simple example:
 
    >>> import beanbag.v2 as beanbag # version 2 api
    >>> github = beanbag.BeanBag("https://api.github.com")
-   >>> watchers = GET(github.repos.ajtowns.beanbag.watchers)
+   >>> watchers = beanbag.GET(github.repos.ajtowns.beanbag.watchers)
    >>> for w in watchers:
    ...     print(w.login)
 
