simple fix

This commit is contained in:
Ali Razmjoo 2017-05-18 16:09:24 +04:30
parent 7dc7bc232f
commit bf857a7fb1
2 changed files with 1 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,7 +8,6 @@
*.py~
tmp/ranges
tmp/subs_temp
tmp/tmp_targets
results.txt
user.txt
pass.txt

View File

@ -32,6 +32,7 @@ def getIPRange(IP):
def isIP(IP):
IP = str(IP)
if len(IP.rsplit('.')) is 4 and '-' not in IP and '/' not in IP:
ip_flag = True
for num in IP.rsplit('.'):