fix previous commit: missing import and typo
This commit is contained in:
parent
6b2a816143
commit
dc7d34e471
|
@ -23,6 +23,7 @@ import re
|
||||||
import logging
|
import logging
|
||||||
log = logging.getLogger('gajim.c.resolver')
|
log = logging.getLogger('gajim.c.resolver')
|
||||||
|
|
||||||
|
from common import helpers
|
||||||
from xmpp.idlequeue import IdleCommand
|
from xmpp.idlequeue import IdleCommand
|
||||||
|
|
||||||
# it is good to check validity of arguments, when calling system commands
|
# it is good to check validity of arguments, when calling system commands
|
||||||
|
@ -238,7 +239,7 @@ class NSLookupResolver(CommonResolver):
|
||||||
elif helpers.decode_string(line).startswith(ufqdn):
|
elif helpers.decode_string(line).startswith(ufqdn):
|
||||||
line = helpers.decode_string(line)
|
line = helpers.decode_string(line)
|
||||||
domain = ufqdn # For nslookup 9.6
|
domain = ufqdn # For nslookup 9.6
|
||||||
if domain
|
if domain:
|
||||||
rest = line[len(domain):].split('=')
|
rest = line[len(domain):].split('=')
|
||||||
if len(rest) != 2:
|
if len(rest) != 2:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue