From e52ca8e25c9a658a3eb0bdfbe23c43e32af37d32 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Tue, 10 Dec 2024 20:13:22 +0700 Subject: [PATCH] Return correct download link for iasl --- Scripts/dsdt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/dsdt.py b/Scripts/dsdt.py index 36d1ffc..5d6d7cd 100644 --- a/Scripts/dsdt.py +++ b/Scripts/dsdt.py @@ -253,7 +253,7 @@ class DSDT: for line in latest_release.get("body", "").splitlines(): if "iasl" in line and ".zip" in line: - return line.split("(")[-1].split(")")[0] + return line.split("\"")[1] return None