From 3af8687f42aeff8c6e76b6ebc84e057aa3c42442 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Sat, 24 Jul 2021 23:14:18 -0600 Subject: [PATCH] Fix print formatting --- Resources/SysPatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index 3baceb5ad..962f5a23a 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -142,9 +142,9 @@ class PatchSysVolume: self.unmount_drive() else: if self.constants.detected_os == self.constants.catalina: - print("Merging kernel cache") + print("- Merging kernel cache") Utilities.process_status(self.elevated(["kcditto"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)) - print("Merging dyld cache") + print("- Merging dyld cache") Utilities.process_status(self.elevated(["update_dyld_shared_cache", "-root", f"{self.mount_location}/"])) print("- Patching complete") print("\nPlease reboot the machine for patches to take effect")