Merge pull request #26 from fabaff/comparison

Fix comparison

Former-commit-id: a1761bccd6
This commit is contained in:
thewhiteh4t
2019-04-29 12:52:51 +05:30
committed by GitHub
+4 -4
View File
@@ -44,11 +44,11 @@ def main():
domains_list()
elif check_domain:
domain_check()
elif addr != None and domain != None:
elif addr is not None and domain is not None:
filtered_check()
elif addr != None and domain == None:
elif addr is not None and domain is None:
check()
elif file != None and domain == None:
elif file is not None and domain is None:
print (G + '[+]' + C + ' Reading Emails Addresses from ' + W + '{}'.format(file) + '\n')
with open(file) as dict:
for line in dict:
@@ -57,7 +57,7 @@ def main():
if addr != '':
check()
time.sleep(1.6)
elif file != None and domain != None:
elif file is not None and domain is not None:
print (G + '[+]' + C + ' Reading Emails Addresses from ' + W + '{}'.format(file) + '\n')
print (G + '[+]' + C + ' Domain : ' + W + domain)
with open(file) as dict: