Moving import to outside of this function
authorChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 1 Jun 2011 00:31:23 +0000 (19:31 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 1 Jun 2011 00:31:23 +0000 (19:31 -0500)
mediagoblin/auth/views.py

index 15cd65e5bae9900b8b7ddd73dc432cab85b5ddf1..906d6f13d826400613eb0f1083e58434b4ec8d2e 100644 (file)
@@ -14,6 +14,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+import bson.objectid
 from webob import Response, exc
 
 from mediagoblin.auth import lib as auth_lib
@@ -148,7 +149,6 @@ def verify_email(request):
     validates GET parameters against database and unlocks the user account, if
     you are lucky :)
     """
-    import bson.objectid
     user = request.db.User.find_one(
         {'_id': bson.objectid.ObjectId(unicode(request.GET.get('userid')))})