aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNick Bastin <nick.bastin@gmail.com>2015-12-13 05:15:44 -0800
committerNick Bastin <nick.bastin@gmail.com>2015-12-20 08:16:32 -0800
commitbd079ae1ebf54d9224ec5662c14b0814301cbd02 (patch)
tree6a9110f98dfef88cfbf3cf57d5aa640fa2777cb4 /src
parent326fc8eb679099552703accd814692c01514312b (diff)
downloadcryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.tar.gz
cryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.tar.bz2
cryptography-bd079ae1ebf54d9224ec5662c14b0814301cbd02.zip
4-space indent for this repo
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/x509/extensions.py2
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")