summaryrefslogtreecommitdiff
path: root/django/middleware
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2011-03-26 03:30:48 +0000
committerAdrian Holovaty <adrian@holovaty.com>2011-03-26 03:30:48 +0000
commit3e18969bcbc7af31eb0fc663b9754ce55bc57dfa (patch)
tree25c03382be38dd9f402f5e30e0a2b2786463127c /django/middleware
parent8121aa60fd2dbc18dd8f4bfd42e4c1567c1199b6 (diff)
Fixed #15635 -- Converted two legacy old-style raise statements. Thanks, DaNmarner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/middleware')
-rw-r--r--django/middleware/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/middleware/common.py b/django/middleware/common.py
index 07c6ff6679..2252c8f9f0 100644
--- a/django/middleware/common.py
+++ b/django/middleware/common.py
@@ -68,13 +68,13 @@ class CommonMiddleware(object):
_is_valid_path("%s/" % request.path_info, urlconf)):
new_url[1] = new_url[1] + '/'
if settings.DEBUG and request.method == 'POST':
- raise RuntimeError, (""
+ raise RuntimeError((""
"You called this URL via POST, but the URL doesn't end "
"in a slash and you have APPEND_SLASH set. Django can't "
"redirect to the slash URL while maintaining POST data. "
"Change your form to point to %s%s (note the trailing "
"slash), or set APPEND_SLASH=False in your Django "
- "settings.") % (new_url[0], new_url[1])
+ "settings.") % (new_url[0], new_url[1]))
if new_url == old_url:
# No redirects required.