Append vim config to resolver.py
This commit is contained in:
parent
233848aec0
commit
c373f044db
|
@ -179,7 +179,7 @@ class NSLookupResolver(CommonResolver):
|
||||||
|
|
||||||
def _parse_srv_result_nt(self, fqdn, result):
|
def _parse_srv_result_nt(self, fqdn, result):
|
||||||
# output from win32 nslookup command
|
# output from win32 nslookup command
|
||||||
if not result:
|
if not result:
|
||||||
return []
|
return []
|
||||||
hosts = []
|
hosts = []
|
||||||
lines = result.replace('\r','').split('\n')
|
lines = result.replace('\r','').split('\n')
|
||||||
|
@ -229,7 +229,7 @@ class NSLookupResolver(CommonResolver):
|
||||||
def _parse_srv_result_posix(self, fqdn, result):
|
def _parse_srv_result_posix(self, fqdn, result):
|
||||||
# typical output of bind-tools nslookup command:
|
# typical output of bind-tools nslookup command:
|
||||||
# _xmpp-client._tcp.jabber.org service = 30 30 5222 jabber.org.
|
# _xmpp-client._tcp.jabber.org service = 30 30 5222 jabber.org.
|
||||||
if not result:
|
if not result:
|
||||||
return []
|
return []
|
||||||
hosts = []
|
hosts = []
|
||||||
lines = result.split('\n')
|
lines = result.split('\n')
|
||||||
|
@ -426,3 +426,5 @@ if __name__ == '__main__':
|
||||||
win.show_all()
|
win.show_all()
|
||||||
gobject.timeout_add(200, idlequeue.process)
|
gobject.timeout_add(200, idlequeue.process)
|
||||||
gtk.main()
|
gtk.main()
|
||||||
|
|
||||||
|
# vim: se ts=3:
|
||||||
|
|
Loading…
Reference in New Issue