aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 b559ae03..02277658 100644
--- a/src/cryptography/x509.py
+++ b/src/cryptography/x509.py
@@ -525,7 +525,7 @@ class UserNotice(object):
def __repr__(self):
return (
"<UserNotice(notice_reference={0.notice_reference}, explicit_text="
- "{0.explicit_text})>".format(self)
+ "{0.explicit_text!r})>".format(self)
)
notice_reference = utils.read_only_property("_notice_reference")