diff options
author | Nick Bastin <nick.bastin@gmail.com> | 2015-12-13 05:15:44 -0800 |
---|---|---|
committer | Nick Bastin <nick.bastin@gmail.com> | 2015-12-20 08:16:32 -0800 |
commit | bd079ae1ebf54d9224ec5662c14b0814301cbd02 (patch) | |
tree | 6a9110f98dfef88cfbf3cf57d5aa640fa2777cb4 | |
parent | 326fc8eb679099552703accd814692c01514312b (diff) | |
download | cryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.tar.gz cryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.tar.bz2 cryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.zip |
4-space indent for this repo
-rw-r--r-- | src/cryptography/x509/extensions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/x509/extensions.py b/src/cryptography/x509/extensions.py index 017e0989..97d78266 100644 --- a/src/cryptography/x509/extensions.py +++ b/src/cryptography/x509/extensions.py @@ -239,7 +239,7 @@ class AuthorityInformationAccess(object): class AccessDescription(object): def __init__(self, access_method, access_location): if not isinstance(access_method, ObjectIdentifier): - raise TypeError("access_method must be an ObjectIdentifier") + raise TypeError("access_method must be an ObjectIdentifier") if not isinstance(access_location, GeneralName): raise TypeError("access_location must be a GeneralName") |