From 2cecb4782dd7da1b6b8cc9d5a7194ea223cdcfed Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Thu, 12 Dec 2024 22:08:10 +0700 Subject: [PATCH] Remove unnecessary AMD Vanilla Patches download message --- Scripts/gathering_files.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Scripts/gathering_files.py b/Scripts/gathering_files.py index 21c7fda..e556c5b 100644 --- a/Scripts/gathering_files.py +++ b/Scripts/gathering_files.py @@ -211,21 +211,18 @@ class gatheringFiles: shutil.rmtree(self.temporary_dir, ignore_errors=True) def get_amd_kernel_patches(self): - self.utils.head("Gathering Files") - print("") - print("Please wait for download AMD Vanilla Patches") - print("from " + self.amd_vanilla_patches_url) - print("") - try: response = self.fetcher.fetch_and_parse_content(self.amd_vanilla_patches_url, "plist") return response["Kernel"]["Patch"] except: - print("Unable to download AMD Vanilla Patches at this time.") - print("Please try again later or apply them manually.") + print("\n") + print("Unable to download AMD Vanilla Patches at this time") + print("from " + self.amd_vanilla_patches_url) print("") + print("Please try again later or apply them manually. ", end="") self.utils.request_input() + print("") return [] def gather_hardware_sniffer(self):