diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2014-02-13 17:36:53 +0100 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2014-02-13 17:36:53 +0100 |
| commit | 474eeccb52416c24ed375c0026af54e586a67ff3 (patch) | |
| tree | 5b6c52de9da8d0690aec2160b9f2bd0419d50ac0 | |
| parent | e86aa83dc34ef9ef38eec9a37b3f81bed6548002 (diff) | |
Fixed a typo (I guess).
| -rw-r--r-- | django/test/client.py | 2 |
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: |
