aboutsummaryrefslogtreecommitdiffstats
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-13 05:15:44 -0800
commit74021e97f842b7b5843863bc988f39710a9258f4 (patch)
treebab58d9f2bf58cffe51888df4217967c985735cb
parentb19ec5119db2e2549d7062717a0e10b66c91714a (diff)
downloadcryptography-74021e97f842b7b5843863bc988f39710a9258f4.tar.gz
cryptography-74021e97f842b7b5843863bc988f39710a9258f4.tar.bz2
cryptography-74021e97f842b7b5843863bc988f39710a9258f4.zip
4-space indent for this repo
-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")