From bd9610791187d7209e33f91604fba324bad96b6f Mon Sep 17 00:00:00 2001 From: yeongpin Date: Sat, 29 Mar 2025 21:55:21 +0800 Subject: [PATCH] Format new GUID in reset_machine_manual.py to include braces for consistency. --- reset_machine_manual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reset_machine_manual.py b/reset_machine_manual.py index dacd537..3be1e4d 100644 --- a/reset_machine_manual.py +++ b/reset_machine_manual.py @@ -613,7 +613,7 @@ class MachineIDResetter: try: import winreg # 1. Generate new GUID - new_guid = str(uuid.uuid4()).upper() + new_guid = "{" + str(uuid.uuid4()).upper() + "}" print(f"{Fore.CYAN}{EMOJI['INFO']} {self.translator.get('reset.new_machine_id')}: {new_guid}{Style.RESET_ALL}") # 2. Open the registry key