diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-03-27 12:02:41 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-03-27 12:02:41 +0200 |
commit | ec68d8b8e4a9fc24e45379359f96b3ebc30e381a (patch) | |
tree | 8a37b879502b5a6e68f02a374761481241f6dd5d /netlib/http/authentication.py | |
parent | ab7e80085af891c494bc274c0cde27d49f89f254 (diff) | |
download | mitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.tar.gz mitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.tar.bz2 mitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.zip |
s/nocover/no cover/g
according to coveralls docs
Diffstat (limited to 'netlib/http/authentication.py')
-rw-r--r-- | netlib/http/authentication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/authentication.py b/netlib/http/authentication.py index d769abe5..6db70fdd 100644 --- a/netlib/http/authentication.py +++ b/netlib/http/authentication.py @@ -140,7 +140,7 @@ class AuthAction(Action): authenticator = BasicProxyAuth(passman, "mitmproxy") setattr(namespace, self.dest, authenticator) - def getPasswordManager(self, s): # pragma: nocover + def getPasswordManager(self, s): # pragma: no cover raise NotImplementedError() |