mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-24 21:43:04 +00:00
Merge pull request #858 from anonymous-ME/master
Fix for wget fallback option with urllib
This commit is contained in:
commit
1eb091b721
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ try:
|
|||
# open file for writing
|
||||
filewrite = open(userconfigpath + "web_clone/index.html", "w")
|
||||
# write the data back from the request
|
||||
filewrite.write(html)
|
||||
filewrite.write(html.decode("utf-8"))
|
||||
# close the file
|
||||
filewrite.close()
|
||||
|
||||
|
|
Loading…
Reference in a new issue