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)