From cecc079168e8669138728d31611ff3a1e7eb3a9f Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Thu, 19 Jan 2017 02:39:46 -0500 Subject: Refs #23919 -- Stopped inheriting from object to define new style classes. --- django/core/files/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/core/files/utils.py') diff --git a/django/core/files/utils.py b/django/core/files/utils.py index 8e891bf23f..96bfbe46c2 100644 --- a/django/core/files/utils.py +++ b/django/core/files/utils.py @@ -1,4 +1,4 @@ -class FileProxyMixin(object): +class FileProxyMixin: """ A mixin class used to forward file methods to an underlaying file object. The internal file object has to be called "file":: -- cgit v1.2.1