diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-18 16:05:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-18 16:05:24 (GMT) |
commit | 3130b7a2a97dbb322342b248cb9d9fae5b89b8f5 (patch) | |
tree | 8bbd99ca828e6f365656b6cff308e42f7e399823 | |
parent | 46586822058b54c93e36247f31b13b4d7286f0a2 (diff) | |
download | cpython-3130b7a2a97dbb322342b248cb9d9fae5b89b8f5.zip cpython-3130b7a2a97dbb322342b248cb9d9fae5b89b8f5.tar.gz cpython-3130b7a2a97dbb322342b248cb9d9fae5b89b8f5.tar.bz2 |
Fixed typo in docstring: suffixes_map --> suffix_map.
-rw-r--r-- | Lib/mimetypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 823ca62..bde0ec9 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -44,7 +44,7 @@ def guess_type(url): The suffixes .tgz, .taz and .tz (case sensitive!) are all mapped to ".tar.gz". (This is table-driven too, using the dictionary - suffixes_map). + suffix_map). """ if not inited: |