[elghinn] Fix var name that prevent account registration
This commit is contained in:
parent
241f666bc6
commit
a621d3631d
|
@ -3744,7 +3744,7 @@ class AccountCreationWizardWindow:
|
||||||
' be invalid.\nSSL Error: %(error)s\n'
|
' be invalid.\nSSL Error: %(error)s\n'
|
||||||
'Do you still want to connect to this server?') % {
|
'Do you still want to connect to this server?') % {
|
||||||
'hostname': hostname, 'error': obj.ssl_msg})
|
'hostname': hostname, 'error': obj.ssl_msg})
|
||||||
if obj.ssl_err in (18, 27):
|
if obj.errnum in (18, 27):
|
||||||
text = _('Add this certificate to the list of trusted '
|
text = _('Add this certificate to the list of trusted '
|
||||||
'certificates.\nSHA1 fingerprint of the certificate:\n%s') \
|
'certificates.\nSHA1 fingerprint of the certificate:\n%s') \
|
||||||
% obj.ssl_fingerprint
|
% obj.ssl_fingerprint
|
||||||
|
|
Loading…
Reference in New Issue