##// END OF EJS Templates
sslutil: make messages for Python without certificate handling more helpful...
Mads Kiilerich -
r14667:8f12dac1 default
parent child Browse files
Show More
@@ -122,8 +122,7 b' class validator(object):'
122 (host, nicefingerprint))
122 (host, nicefingerprint))
123 else: # python 2.5 ?
123 else: # python 2.5 ?
124 if hostfingerprint:
124 if hostfingerprint:
125 raise util.Abort(_('no certificate for %s with '
125 raise util.Abort(_("host fingerprint for %s can't be "
126 'configured hostfingerprint') % host)
126 "verified (Python too old)") % host)
127 self.ui.warn(_('warning: %s certificate not verified '
127 self.ui.warn(_("warning: certificate for %s can't be "
128 '(check web.cacerts config setting)\n') %
128 "verified (Python too old)\n") % host)
129 host)
General Comments 0
You need to be logged in to leave comments. Login now