diff options
author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-05-28 11:56:09 +0000 |
---|---|---|
committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-05-28 11:56:09 +0000 |
commit | 7bb9a8e3ae432cff280d0df0458461ee512998f7 (patch) | |
tree | faeb105eda34954dffd9c554b15e23da2625308c | |
parent | c6694dcdee914914cfee9050f062caacbbd3a922 (diff) | |
download | django-7bb9a8e3ae432cff280d0df0458461ee512998f7.tar.gz |
unicode: Fixed a docstring from [5373].
git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5374 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 7ffe7be085..5735300159 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -63,7 +63,7 @@ class HttpRequest(object): encoding = property(_get_encoding, _set_encoding) def parse_file_upload(header_dict, post_data): - "Returns a tuple of (POST MultiValueDict, FILES MultiValueDict)" + "Returns a tuple of (POST QueryDict, FILES MultiValueDict)" import email, email.Message from cgi import parse_header raw_message = '\r\n'.join(['%s:%s' % pair for pair in header_dict.items()]) |