fix missing import

This commit is contained in:
Yann Leboulanger 2008-08-30 18:48:06 +00:00
parent b5b27227ea
commit b2e3c2cc72
1 changed files with 2 additions and 1 deletions

View File

@ -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