Skip to content

Commit 9b98ca6

Browse files
authored
Merge pull request #72 from stitch/patch-1
Solving AttributeError: 'DnsHelper' object has no attribute 'get_tx'
2 parents 4324ba3 + aca24f1 commit 9b98ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dnsrecon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ def lookup_next(target, res):
11491149
returned_records.append({'type': r[0],
11501150
'name': r[1], 'strings': r[2]})
11511151
else:
1152-
txt_answer = res_sys.get_tx(target)
1152+
txt_answer = res_sys.get_txt(target)
11531153
if len(txt_answer) > 0:
11541154
for r in txt_answer:
11551155
print_status("\t {0}".format(" ".join(r)))

0 commit comments

Comments
 (0)