diff --git a/userprofile/templates/userprofile/account/login.html b/userprofile/templates/userprofile/account/login.html
index f0219b9..690b341 100644
--- a/userprofile/templates/userprofile/account/login.html
+++ b/userprofile/templates/userprofile/account/login.html
@@ -6,46 +6,47 @@
{% block extrajs %}
{% endblock %}
{% block userprofile_content %}
-
+
{% endblock %}
{% block userprofile_content_related %}
-
+
{% endblock %}
diff --git a/userprofile/views.py b/userprofile/views.py
index 41f429c..3ab34ca 100644
--- a/userprofile/views.py
+++ b/userprofile/views.py
@@ -3,9 +3,9 @@
from django.http import HttpResponseRedirect, HttpResponse
from django.shortcuts import render_to_response, get_object_or_404
from django.utils.translation import ugettext as _
-from userprofile.forms import AvatarForm, AvatarCropForm, EmailValidationForm, \
- ProfileForm, RegistrationForm, LocationForm, \
- ResendEmailValidationForm, PublicFieldsForm
+from userprofile.forms import (AvatarForm, AvatarCropForm, EmailValidationForm,
+ ProfileForm, RegistrationForm, LocationForm,
+ ResendEmailValidationForm, PublicFieldsForm)
from userprofile.models import BaseProfile
from django.http import Http404
from django.core.exceptions import ObjectDoesNotExist
@@ -14,8 +14,9 @@
from django.utils import simplejson
from django.db import models
from django.contrib.auth.models import User, SiteProfileNotAvailable
-from userprofile.models import EmailValidation, Avatar, UserProfileMediaNotFound, \
- GoogleDataAPINotFound, S3BackendNotFound
+from userprofile.models import (EmailValidation, Avatar,
+ UserProfileMediaNotFound, GoogleDataAPINotFound,
+ S3BackendNotFound)
from django.template import RequestContext
from cStringIO import StringIO
from django.core.files.base import ContentFile