aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-11-07 03:37:34 +0000
committerRob Austein <sra@hactrn.net>2007-11-07 03:37:34 +0000
commitdc013e46c9400321094e50aa8baeab36e084f8ed (patch)
tree67f4d55558c978642c41ea2add6b6444946649a2
parent075106e3c1f61e6a6c69c12d6fe2d2ad1e137978 (diff)
Checkpoint
svn path=/scripts/rpki/x509.py; revision=1260
-rw-r--r--scripts/rpki/x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpki/x509.py b/scripts/rpki/x509.py
index 4235649f..f15109ae 100644
--- a/scripts/rpki/x509.py
+++ b/scripts/rpki/x509.py
@@ -451,7 +451,7 @@ class PKCS10(DER_object):
for method, location in req_exts.get("subjectInfoAccess", ()):
if oid2name.get(method) == "caRepository" and \
(location[0] != "uri" or (location[1].startswith("rsync://") and not location[1].endswith("/"))):
- raise rpki.exceptions.BadPKCS10, "Certificate request includes bad SIA component: %s" % location
+ raise rpki.exceptions.BadPKCS10, "Certificate request includes bad SIA component: %s" % repr(location)
# This one is an implementation restriction. I don't yet
# understand what the spec is telling me to do in this case.