commit 9bbc55d24a132dc2534bd744085ec51113e9d47d Author: Isis Lovecruft isis@torproject.org Date: Fri Feb 28 01:07:32 2014 +0000
Pep8 the order of imports in lib/bridgedb/captcha.py. --- lib/bridgedb/captcha.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lib/bridgedb/captcha.py b/lib/bridgedb/captcha.py index f70fa3f..e6533d8 100644 --- a/lib/bridgedb/captcha.py +++ b/lib/bridgedb/captcha.py @@ -32,10 +32,12 @@ gimp-captcha_ and then cached locally. .. _gimp-captcha: https://github.com/isislovecruft/gimp-captcha """
-from recaptcha.client import captcha as recaptcha -from BeautifulSoup import BeautifulSoup import urllib2
+from BeautifulSoup import BeautifulSoup +from recaptcha.client import captcha as recaptcha + + class Raptcha(): """ A recaptcha captcha and method to request them """
tor-commits@lists.torproject.org