From 96666eba1e08c9b7e9e7168a14899bcc2de70fbd Mon Sep 17 00:00:00 2001 From: Jali Date: Sat, 7 May 2022 19:57:23 +0200 Subject: [PATCH] Fix typo in import lines --- scraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper.py b/scraper.py index af75d29..3280b2d 100755 --- a/scraper.py +++ b/scraper.py @@ -44,7 +44,7 @@ def copy_file(track: Track, targetFolder) -> str: print('Copying file {0}', path) copyfile(path, dst) else: - print('File {0} not found.', path) + print('File {0} not found.'.format(path)) return None return dst