removed color for file name

This commit is contained in:
Siddharth Dushantha 2018-08-14 09:21:10 +02:00 committed by GitHub
parent d43ef7bd8a
commit 3fa2ceb085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ def download(username, html):
path = dir_name+fname
urllib.request.urlretrieve(file_url, path)
print("\033[92m[+] Downloaded: {}\033[0m".format(path.replace(dir_name, "")))
print("\033[92m[+] Downloaded:\033[0m {}".format(path.replace(dir_name, "")))
def main():
@ -62,4 +62,4 @@ def main():
download(username=args.username, html=html)
main()
main()