diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-06-16 16:34:46 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-06-16 16:34:46 +0000 |
| commit | dfa29161e2eff676eb4aa187f76c157556dfc5db (patch) | |
| tree | 7f8ae90d7f8955a0785e3c4b8e9d5a72d828ff4f /django | |
| parent | 22529d41b26137ac87c5e08a6c19e6e91552756e (diff) | |
Fixed #14020 -- Made the `HttpResponse` class slightly more behave like a dictionary, allowing the alternative argument to be unset. Serious thanks to schmichael and moopet.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16417 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/http/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index 7f198a7b08..2a88ee1950 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -615,7 +615,7 @@ class HttpResponse(object): def items(self): return self._headers.values() - def get(self, header, alternate): + def get(self, header, alternate=None): return self._headers.get(header.lower(), (None, alternate))[1] def set_cookie(self, key, value='', max_age=None, expires=None, path='/', |
