From 43e98834cca5b250b70740e71b5b84fc744c7e46 Mon Sep 17 00:00:00 2001 From: Karol Mazurek Date: Mon, 15 Dec 2025 16:01:17 +0100 Subject: [PATCH] Fix error message formatting in check_paths method --- VIII. Sandbox/python/crimson_waccess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 VIII. Sandbox/python/crimson_waccess.py diff --git a/VIII. Sandbox/python/crimson_waccess.py b/VIII. Sandbox/python/crimson_waccess.py old mode 100644 new mode 100755 index 6736d05..66ffdc6 --- a/VIII. Sandbox/python/crimson_waccess.py +++ b/VIII. Sandbox/python/crimson_waccess.py @@ -20,7 +20,7 @@ class Waccess: elif os.path.isfile(path): self.check_file_write_permission(path, output_path) else: - sys.stderr.write(f"Path {path} does not exist.") + sys.stderr.write(f"Path {path} does not exist.\n") def check_directory_write_permission(self, directory_path, output_path): '''Check if a directory is writable by attempting to create a test file.'''