From 3fa2ceb085357b220eea4fa457c556c8c8043421 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Tue, 14 Aug 2018 09:21:10 +0200 Subject: [PATCH] removed color for file name --- vsco-dl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vsco-dl.py b/vsco-dl.py index 8b2d17a..091ee61 100644 --- a/vsco-dl.py +++ b/vsco-dl.py @@ -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() \ No newline at end of file +main()