diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-17 17:34:46 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-17 18:03:07 +1300 |
commit | c774a9fec93feedc37a450400a03b83f5f4cb4b9 (patch) | |
tree | 507c346e8f8c605d428140274678fced2e6bbc16 /netlib/exceptions.py | |
parent | a647b30365593a4a3056fcf6936f5441ab9eda88 (diff) | |
download | mitmproxy-c774a9fec93feedc37a450400a03b83f5f4cb4b9.tar.gz mitmproxy-c774a9fec93feedc37a450400a03b83f5f4cb4b9.tar.bz2 mitmproxy-c774a9fec93feedc37a450400a03b83f5f4cb4b9.zip |
python3: clean up super and __future__
Diffstat (limited to 'netlib/exceptions.py')
-rw-r--r-- | netlib/exceptions.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/netlib/exceptions.py b/netlib/exceptions.py index 1787cb72..d0b15d27 100644 --- a/netlib/exceptions.py +++ b/netlib/exceptions.py @@ -5,7 +5,6 @@ Every Exception netlib raises shall be a subclass of NetlibException. See also: http://lucumr.pocoo.org/2014/10/16/on-error-handling/ """ -from __future__ import absolute_import, print_function, division class NetlibException(Exception): @@ -13,7 +12,7 @@ class NetlibException(Exception): Base class for all exceptions thrown by netlib. """ def __init__(self, message=None): - super(NetlibException, self).__init__(message) + super().__init__(message) class Disconnect: |