From cde2c84bfc61dae5975508803c162af718b0f1ab Mon Sep 17 00:00:00 2001 From: GorouFlex <98001973+gorouflex@users.noreply.github.com> Date: Sat, 20 Jul 2024 13:54:11 +0700 Subject: [PATCH] linux: fix type --- Linux/UXTU4Unix.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Linux/UXTU4Unix.py b/Linux/UXTU4Unix.py index e3a110a..116bbd3 100644 --- a/Linux/UXTU4Unix.py +++ b/Linux/UXTU4Unix.py @@ -144,7 +144,8 @@ def get_codename(): cfg.set('Info', 'Type', 'Intel') elif architecture == 'Unknown': cfg.set('Info', 'Type', 'Unknown') - + else: + cfg.set('Info', 'Type', 'Amd_Apu') with open(CONFIG_PATH, 'w') as config_file: cfg.write(config_file)