Kaydet (Commit) 3e18969b authored tarafından Adrian Holovaty's avatar Adrian Holovaty

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
üst 8121aa60
......@@ -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.
......
......@@ -997,8 +997,7 @@ class TestCase(unittest.TestCase):
excName = expected_exception.__name__
else:
excName = str(expected_exception)
raise self.failureException, "%s not raised" % excName
raise self.failureException("%s not raised" % excName)
def assertRegexpMatches(self, text, expected_regexp, msg=None):
"""Fail the test unless the text matches the regular expression."""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment