aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-04-11 15:53:12 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-04-11 15:53:12 -0400
commitf4ed10afd78fcd013ed17fd9305f33f07c4a6e7b (patch)
treede1b75c44339932db5f446cb6febbe69cd0017d4
parente613e5d8d922d7617409b878b3c2450eb9d21877 (diff)
downloadcryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.tar.gz
cryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.tar.bz2
cryptography-f4ed10afd78fcd013ed17fd9305f33f07c4a6e7b.zip
0!r time
-rw-r--r--src/cryptography/x509.py2
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")