summaryrefslogtreecommitdiff
path: root/django/core/handlers/modpython.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/handlers/modpython.py')
-rw-r--r--django/core/handlers/modpython.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py
index 815b96f2e8..ce7f6f1ad2 100644
--- a/django/core/handlers/modpython.py
+++ b/django/core/handlers/modpython.py
@@ -32,7 +32,7 @@ class ModPythonRequest(http.HttpRequest):
def _get_request(self):
if not hasattr(self, '_request'):
- self._request = datastructures.MergeDict(self.POST, self.GET)
+ self._request = datastructures.MergeDict(self.POST, self.GET)
return self._request
def _get_get(self):