summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Petrov <shazow@gmail.com>2015-06-02 10:11:10 +0100
committerAndrey Petrov <shazow@gmail.com>2015-06-02 10:11:10 +0100
commit416776811ce186b6a4cc09cbb4878457da6be3a9 (patch)
tree82b1338648faa78a3eebfb07128eea78f3c1b760
parentf1a8e62792cfee561ed9671d57b64dd73363148e (diff)
parent3eb446ae36d5073ce3cad6eebe285f34ab694973 (diff)
downloadurllib3-416776811ce186b6a4cc09cbb4878457da6be3a9.tar.gz
Merge pull request #641 from t-8ch/no_assert
proper use of super().__init__() call
-rw-r--r--urllib3/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/exceptions.py b/urllib3/exceptions.py
index ffb56f38..64b4d8f2 100644
--- a/urllib3/exceptions.py
+++ b/urllib3/exceptions.py
@@ -175,4 +175,4 @@ class ProxySchemeUnknown(AssertionError, ValueError):
def __init__(self, scheme):
message = "Not supported proxy scheme %s" % scheme
- super(ProxySchemeUnknown, self).__init__(self, message)
+ super(ProxySchemeUnknown, self).__init__(message)