If PTR records are not UTF-8, ignore the conversion errors.

This commit is contained in:
Alexandre Dulaunoy 2014-01-11 22:48:59 +01:00
parent 49954da366
commit dfe3262212

View file

@ -25,11 +25,11 @@ r = redis.StrictRedis(host='localhost', port=8323)
if args.r: if args.r:
for x in args.r: for x in args.r:
with open(x) as f: with open(x, encoding='UTF-8', errors='ignore') as f:
for l in f: for l in f:
(ip, ptr) = l.rstrip().split(',') (ip, ptr) = l.rstrip().split(',')[:2]
print (terms(ptr)) print (terms(ptr))
r.set(ip,ptr) r.set(ip,ptr)
else: else:
argParser.print_help() argParser.print_help()
exit(1) exit(1)