diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-04-11 15:53:12 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-04-11 15:53:12 -0400 |
commit | f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b (patch) | |
tree | de1b75c44339932db5f446cb6febbe69cd0017d4 /src | |
parent | e613e5d8d922d7617409b878b3c2450eb9d21877 (diff) | |
download | cryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.tar.gz cryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.tar.bz2 cryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.zip |
0!r time
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index a50c0555..8554aeab 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -191,7 +191,7 @@ class Name(object): return len(self._attributes) def __repr__(self): - return "<Name({0})>".format(self._attributes) + return "<Name({0!r})>".format(self._attributes) OID_SUBJECT_DIRECTORY_ATTRIBUTES = ObjectIdentifier("2.5.29.9") |