Merge pull request #8 from gavin-anders/patch-1

Correct print when using python3
This commit is contained in:
fleetcaptain 2019-09-12 20:08:54 -07:00 committed by GitHub
commit 84d82d9019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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