fix missing import

這個提交存在於:
Yann Leboulanger 2008-08-30 18:48:06 +00:00
父節點 b5b27227ea
當前提交 b2e3c2cc72

檢視檔案

@ -24,6 +24,7 @@
import sys
import os
import re
from common import helpers
from xmpp.idlequeue import *
@ -121,7 +122,7 @@ class Resolver:
elif line.startswith(ufqdn):
domain = ufqdn
if domain:
rest = line[len(host):].split('=')
rest = line[len(domain):].split('=')
if len(rest) != 2:
continue
answer_type, props_str = rest