diff options
author | Nick Bastin <nick.bastin@gmail.com> | 2015-12-17 05:30:07 -0800 |
---|---|---|
committer | Nick Bastin <nick.bastin@gmail.com> | 2015-12-17 05:30:07 -0800 |
commit | 241c390d5622be832b034141a634eeac38e325fb (patch) | |
tree | f830cbb3c731bb2c684dba613f4791fd49005a04 | |
parent | f9c30b39f28f25c7da462fe16d989c2050dee2a7 (diff) | |
download | cryptography-241c390d5622be832b034141a634eeac38e325fb.tar.gz cryptography-241c390d5622be832b034141a634eeac38e325fb.tar.bz2 cryptography-241c390d5622be832b034141a634eeac38e325fb.zip |
Typo
-rw-r--r-- | src/cryptography/x509/oid.py | 2 |
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( |