diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2017-12-07 14:10:32 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-12-07 09:10:32 -0500 |
| commit | c68f66e0144b69367e98692cba313251a36b85a8 (patch) | |
| tree | 27cc339cb832ed681e7845070e19afe68fc966d5 /django/utils/log.py | |
| parent | 9d1d0e2b702fe1a3f979a95bc4583f1a1691c74f (diff) | |
Refs #23919 -- Replaced super() calls for old-style classes.
Diffstat (limited to 'django/utils/log.py')
| -rw-r--r-- | django/utils/log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/log.py b/django/utils/log.py index 12b830a794..2c3d4ed5e3 100644 --- a/django/utils/log.py +++ b/django/utils/log.py @@ -82,7 +82,7 @@ class AdminEmailHandler(logging.Handler): """ def __init__(self, include_html=False, email_backend=None): - logging.Handler.__init__(self) + super().__init__() self.include_html = include_html self.email_backend = email_backend |
