diff --git a/pyi2phosts/postkey/views.py b/pyi2phosts/postkey/views.py index d920038..d303622 100644 --- a/pyi2phosts/postkey/views.py +++ b/pyi2phosts/postkey/views.py @@ -133,10 +133,10 @@ def subdomain(request): elif hasattr(e, 'code'): log.warning('%s can\'t finish the request, error code: %s', request.session['topdomain'], e.code) - return render_to_response('subdomain_http_verify_failure.html', { - 'title': settings.SITE_NAME, - 'code': e.code, - }, context_instance=RequestContext(request)) + return render_to_response('subdomain_http_verify_failure.html', { + 'title': settings.SITE_NAME, + 'code': e.code, + }, context_instance=RequestContext(request)) else: log.debug('subdomain verification success, saving host') s = save_host(request)