From 708f9de09be7784bb3fb00f3909785b25dbde532 Mon Sep 17 00:00:00 2001
From: DaNmarner <danmarner@gmail.com>
Date: Sat, 19 Mar 2011 12:13:59 -0500
Subject: [PATCH] fixed 2 more raise style
---
django/middleware/common.py | 4 ++--
django/utils/unittest/case.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/django/middleware/common.py b/django/middleware/common.py
index 07c6ff6..2252c8f 100644
a
|
b
|
class CommonMiddleware(object):
|
68 | 68 | _is_valid_path("%s/" % request.path_info, urlconf)): |
69 | 69 | new_url[1] = new_url[1] + '/' |
70 | 70 | if settings.DEBUG and request.method == 'POST': |
71 | | raise RuntimeError, ("" |
| 71 | raise RuntimeError(("" |
72 | 72 | "You called this URL via POST, but the URL doesn't end " |
73 | 73 | "in a slash and you have APPEND_SLASH set. Django can't " |
74 | 74 | "redirect to the slash URL while maintaining POST data. " |
75 | 75 | "Change your form to point to %s%s (note the trailing " |
76 | 76 | "slash), or set APPEND_SLASH=False in your Django " |
77 | | "settings.") % (new_url[0], new_url[1]) |
| 77 | "settings.") % (new_url[0], new_url[1])) |
78 | 78 | |
79 | 79 | if new_url == old_url: |
80 | 80 | # No redirects required. |
diff --git a/django/utils/unittest/case.py b/django/utils/unittest/case.py
index 8d943e2..e284800 100644
a
|
b
|
class TestCase(unittest.TestCase):
|
997 | 997 | excName = expected_exception.__name__ |
998 | 998 | else: |
999 | 999 | excName = str(expected_exception) |
1000 | | raise self.failureException, "%s not raised" % excName |
| 1000 | raise self.failureException("%s not raised" % excName) |
1001 | 1001 | |
1002 | 1002 | |
1003 | 1003 | def assertRegexpMatches(self, text, expected_regexp, msg=None): |