From 0a6dd690c7f813cccd55b5311924dc6bb2b68a52 Mon Sep 17 00:00:00 2001 From: artus Date: Sun, 18 Nov 2018 21:50:02 +0100 Subject: [PATCH] fixes typo --- photograb/store.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photograb/store.py b/photograb/store.py index a8db6af..9e85492 100644 --- a/photograb/store.py +++ b/photograb/store.py @@ -70,8 +70,8 @@ class Store: print(f"{count} in {elapsed:.2f}s.") def remove_content(self, content): - print("Removing files from {self.path} : ", end="") - count = len(content) + print(f"Removing files from {self.path} : ", end="") + count = len(content) start_time = time.process_time() for name, path in content.items(): shutil.rm(path)