From 379227e4b9e5ac5be9fc8629ed186ea23eee7acd Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 20 Dec 2003 20:31:08 +0000 Subject: Backport rev 1.30 removing 'self' from the arg list for add_type() --- Lib/mimetypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 77fdcdf..88b9e2f 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -268,7 +268,7 @@ def guess_extension(type, strict=True): init() return guess_extension(type, strict) -def add_type(self, type, ext, strict=True): +def add_type(type, ext, strict=True): """Add a mapping between a type and an extension. When the extension is already known, the new -- cgit v0.12