Fix spacing

This commit is contained in:
Evan Fagerberg 2015-07-24 12:27:30 -04:00
parent 42b337cb28
commit ff2ad2bb62
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ def get_mx_ip(hostname):
try:
MX_DNS_CACHE[hostname] = DNS.mxlookup(hostname)
except ServerError as e:
if e.rcode == 3 or e.rcode == 2: # NXDOMAIN (Non-Existent Domain) or SERVFAIL
if e.rcode == 3 or e.rcode == 2: # NXDOMAIN (Non-Existent Domain) or SERVFAIL
MX_DNS_CACHE[hostname] = None
else:
raise