From 0287d3a13255cc5b4055fdf22cd2707ef13b8ac5 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Tue, 4 May 2021 03:55:32 +0400 Subject: [PATCH] Turned a string into f-string. --- scrapthechan/cli/scraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapthechan/cli/scraper.py b/scrapthechan/cli/scraper.py index 97a2cc4..9ebf636 100644 --- a/scrapthechan/cli/scraper.py +++ b/scrapthechan/cli/scraper.py @@ -97,7 +97,7 @@ def main() -> None: exit() except ThreadNotFoundError as e: print(f"Thread {args['site']}/{args['board']}/{args['thread']} " \ - "not found. Reason: {e.reason}") + f"not found. Reason: {e.reason}") exit() files_count = len(parser.files)