Fix PEP8: E123 closing bracket does not match

indentation of opening bracket's line
This commit is contained in:
stv
2014-11-08 17:20:47 -08:00
parent 55de42d19c
commit 5a69feadeb
17 changed files with 23 additions and 19 deletions

View File

@@ -27,12 +27,12 @@ class UserStandingMiddleware(object):
'Your account has been disabled. If you believe '
'this was done in error, please contact us at '
'{link_start}{support_email}{link_end}'
).format(
).format(
support_email=settings.DEFAULT_FEEDBACK_EMAIL,
link_start=u'<a href="mailto:{address}?subject={subject_line}">'.format(
address=settings.DEFAULT_FEEDBACK_EMAIL,
subject_line=_('Disabled Account'),
),
link_end=u'</a>'
)
)
return HttpResponseForbidden(msg)