aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-11 21:22:38 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-11 21:22:38 -0500
commit73be2ca86049fd15f1ab37d7201a9b32264402ab (patch)
treee94e1b904c9085d242e4b73ba1562b672e2a0ca3 /src
parent9aaef9e516ae1c54c79f07b0441c21c29f8aeb15 (diff)
downloadcryptography-73be2ca86049fd15f1ab37d7201a9b32264402ab.tar.gz
cryptography-73be2ca86049fd15f1ab37d7201a9b32264402ab.tar.bz2
cryptography-73be2ca86049fd15f1ab37d7201a9b32264402ab.zip
alter the repr a bit, pass unicode everywhere
Diffstat (limited to 'src')
-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 02277658..50fae716 100644
--- a/src/cryptography/x509.py
+++ b/src/cryptography/x509.py
@@ -546,7 +546,7 @@ class NoticeReference(object):
def __repr__(self):
return (
- "<NoticeReference(organization={0.organization}, notice_numbers="
+ "<NoticeReference(organization={0.organization!r}, notice_numbers="
"{0.notice_numbers})>".format(self)
)