aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")