mirror of
https://github.com/DanMcInerney/LANs.py.git
synced 2025-07-10 15:23:37 -07:00
Fix misasignment of variables
This commit is contained in:
parent
e99742643b
commit
eb38dc481e
1 changed files with 2 additions and 2 deletions
4
LANs.py
4
LANs.py
|
@ -671,8 +671,8 @@ class Parser():
|
|||
|
||||
if self.args.urlspy:
|
||||
tempURL = url
|
||||
tempURL.split("?")[0] #Strip all data (e.g. www.google.com/?g=5 goes to www.google.com/)
|
||||
tempURL.strip("/") #Strip all /
|
||||
tempURL = tempURL.split("?")[0] #Strip all data (e.g. www.google.com/?g=5 goes to www.google.com/)
|
||||
tempURL = tempURL.strip("/") #Strip all /
|
||||
fileFilterList = ['.jpg', '.jpeg', '.gif', '.png', '.css', '.ico', '.js', '.svg', '.woff']
|
||||
printURL = True # default to printing URL
|
||||
for fileType in fileFilterList:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue