changeset 14666 | 27b080aa880a |
parent 14616 | 64dfbe576455 |
child 14667 | 8f12dac18d13 |
--- a/mercurial/sslutil.py Fri Jun 17 15:43:50 2011 -0500 +++ b/mercurial/sslutil.py Sat Jun 18 01:03:03 2011 +0200 @@ -48,7 +48,8 @@ for name in certnames: if matchdnsname(name): return None - return _('certificate is for %s') % ', '.join(certnames) + if certnames: + return _('certificate is for %s') % ', '.join(certnames) # subject is only checked when subjectAltName is empty for s in cert.get('subject', []):