mirror of https://github.com/zulip/zulip.git
zilencer: Fix typo in variable name.
This commit is contained in:
parent
9d66a8eb73
commit
9388805471
|
@ -172,12 +172,12 @@ def register_remote_server(
|
||||||
# Check if the domain has an MX record
|
# Check if the domain has an MX record
|
||||||
try:
|
try:
|
||||||
records = DNS.mxlookup(contact_email_domain)
|
records = DNS.mxlookup(contact_email_domain)
|
||||||
dns_ms_check_successful = True
|
dns_mx_check_successful = True
|
||||||
if not records:
|
if not records:
|
||||||
dns_ms_check_successful = False
|
dns_mx_check_successful = False
|
||||||
except DNS.Base.ServerError:
|
except DNS.Base.ServerError:
|
||||||
dns_ms_check_successful = False
|
dns_mx_check_successful = False
|
||||||
if not dns_ms_check_successful:
|
if not dns_mx_check_successful:
|
||||||
raise JsonableError(
|
raise JsonableError(
|
||||||
_("{domain} does not exist or is not configured to accept email.").format(
|
_("{domain} does not exist or is not configured to accept email.").format(
|
||||||
domain=contact_email_domain
|
domain=contact_email_domain
|
||||||
|
|
Loading…
Reference in New Issue