|
@@ -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:
|
|
|
|