Skip to content

Commit

Permalink
Fix deprecation warning in threading
Browse files Browse the repository at this point in the history
  • Loading branch information
rbsec committed Jan 20, 2022
1 parent 5eabf4c commit 8675b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def setup():

for i in range(args.threads):
t = scanner(queue)
t.setDaemon(True)
t.daemon = True
t.start()
try:
for i in range(args.threads):
Expand Down

0 comments on commit 8675b17

Please sign in to comment.