[tor-commits] [bridgedb/master] Pep8 the order of imports in lib/bridgedb/captcha.py.
isis at torproject.org
isis at torproject.org
Sun Mar 16 19:04:57 UTC 2014
commit 9bbc55d24a132dc2534bd744085ec51113e9d47d
Author: Isis Lovecruft <isis at 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 """
More information about the tor-commits
mailing list