summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2014-02-13 17:36:53 +0100
committerFlorian Apolloner <florian@apolloner.eu>2014-02-13 17:36:53 +0100
commit474eeccb52416c24ed375c0026af54e586a67ff3 (patch)
tree5b6c52de9da8d0690aec2160b9f2bd0419d50ac0
parente86aa83dc34ef9ef38eec9a37b3f81bed6548002 (diff)
Fixed a typo (I guess).
-rw-r--r--django/test/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/client.py b/django/test/client.py
index 90804fc170..e6a9593dfd 100644
--- a/django/test/client.py
+++ b/django/test/client.py
@@ -252,7 +252,7 @@ class RequestFactory(object):
"Construct a generic request object."
return WSGIRequest(self._base_environ(**request))
- def _encode_data(self, data, content_type, ):
+ def _encode_data(self, data, content_type):
if content_type is MULTIPART_CONTENT:
return encode_multipart(BOUNDARY, data)
else: