aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Bastin <nick.bastin@gmail.com>2015-12-17 05:30:07 -0800
committerNick Bastin <nick.bastin@gmail.com>2015-12-17 05:30:07 -0800
commit241c390d5622be832b034141a634eeac38e325fb (patch)
treef830cbb3c731bb2c684dba613f4791fd49005a04
parentf9c30b39f28f25c7da462fe16d989c2050dee2a7 (diff)
downloadcryptography-241c390d5622be832b034141a634eeac38e325fb.tar.gz
cryptography-241c390d5622be832b034141a634eeac38e325fb.tar.bz2
cryptography-241c390d5622be832b034141a634eeac38e325fb.zip
Typo
-rw-r--r--src/cryptography/x509/oid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py
index f5dc2f81..27fab86b 100644
--- a/src/cryptography/x509/oid.py
+++ b/src/cryptography/x509/oid.py
@@ -29,7 +29,7 @@ class ObjectIdentifier(object):
if len(nodes) < 2:
raise ValueError(
"Malformed OID: %s (insufficient number of nodes)" % (
- self._dotted_string)
+ self._dotted_string))
if intnodes[0] > 2:
raise ValueError(