From ed85a40a45c35f5b89afff06503377576abf51fa Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Tue, 7 Mar 2023 23:17:48 -0500 Subject: [PATCH] [O] Better message --- tngame/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tngame/__main__.py b/tngame/__main__.py index 39c00ac..d74147b 100644 --- a/tngame/__main__.py +++ b/tngame/__main__.py @@ -38,5 +38,5 @@ if __name__ == '__main__': observer.schedule(event_handler, path=str(script_path.absolute()), recursive=False) observer.start() - print("Watching for changes...") + print(f"Watching directory {script_path} for changes...") observer.join()