Merge pull request #8 from gavin-anders/patch-1
Correct print when using python3
This commit is contained in:
commit
84d82d9019
|
|
@ -26,7 +26,7 @@ from collections import Counter
|
||||||
try:
|
try:
|
||||||
from subbrute import subbrute
|
from subbrute import subbrute
|
||||||
except:
|
except:
|
||||||
print "Failed to import subbrute, you will not be able to bruteforce"
|
print("Failed to import subbrute, you will not be able to bruteforce")
|
||||||
import dns.resolver
|
import dns.resolver
|
||||||
import requests
|
import requests
|
||||||
# import dnslib, which provides better features compared to dns.resolver for finding subdomains
|
# import dnslib, which provides better features compared to dns.resolver for finding subdomains
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue