From 33a9a8f21ae6a752f64498eb08d737ece089ff5a Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 25 Sep 2006 17:25:39 +0000 Subject: [PATCH] Altered [3778] change to match our coding/text style (django.middleware.common) git-svn-id: http://code.djangoproject.com/svn/django/trunk@3834 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/middleware/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/middleware/common.py b/django/middleware/common.py index 4f060b8590..8392fb0e5f 100644 --- a/django/middleware/common.py +++ b/django/middleware/common.py @@ -64,9 +64,9 @@ class CommonMiddleware(object): is_internal = referer and (domain in referer) path = request.get_full_path() if referer and not _is_ignorable_404(path) and (is_internal or '?' not in referer): - ua = request.META.get('HTTP_USER_AGENT','') + ua = request.META.get('HTTP_USER_AGENT', '') mail_managers("Broken %slink on %s" % ((is_internal and 'INTERNAL ' or ''), domain), - "Referrer: %s\nRequested URL: %s\nUser Agent: %s\n" % (referer, request.get_full_path(), ua)) + "Referrer: %s\nRequested URL: %s\nUser agent: %s\n" % (referer, request.get_full_path(), ua)) return response # Use ETags, if requested.