aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhoebe Queen <foibey@gmail.com>2015-08-12 04:14:22 +0100
committerPhoebe Queen <foibey@gmail.com>2015-08-12 04:14:22 +0100
commit2cc111a18b615ccf3ecec9fe8918836d498e4b67 (patch)
tree25eb29dcfbbfd38c734d89ad7b3c8ce280ab4ed8 /src
parent019b7f84c9284d27972ea0abfac8ebad24490b92 (diff)
downloadcryptography-2cc111a18b615ccf3ecec9fe8918836d498e4b67.tar.gz
cryptography-2cc111a18b615ccf3ecec9fe8918836d498e4b67.tar.bz2
cryptography-2cc111a18b615ccf3ecec9fe8918836d498e4b67.zip
fixing pep8 errors #2255
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/x509/extensions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cryptography/x509/extensions.py b/src/cryptography/x509/extensions.py
index 938a98e9..09d76501 100644
--- a/src/cryptography/x509/extensions.py
+++ b/src/cryptography/x509/extensions.py
@@ -85,7 +85,9 @@ class Extensions(object):
if isinstance(ext.value, extclass):
return ext
- raise ExtensionNotFound("No {0} extension was found".format(extclass), extclass)
+ raise ExtensionNotFound(
+ "No {0} extension was found".format(extclass), extclass
+ )
def __iter__(self):
return iter(self._extensions)