diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/rpki/x509.py | 2 |
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. |