From 1f182da51c4325eec625de066879272d6ad6a65d Mon Sep 17 00:00:00 2001 From: LetMeFly666 Date: Mon, 22 Jun 2026 22:30:17 +0800 Subject: [PATCH] fix: fix variable reference in parse_info Signed-off-by: LetMeFly666 --- apple-device-names | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple-device-names b/apple-device-names index c2d1db9..9ae7229 100755 --- a/apple-device-names +++ b/apple-device-names @@ -9,7 +9,7 @@ def parse_info(filename): p = Popen([ 'plutil', '-convert', 'json', - f, + filename, '-o', '-' ], stdout=PIPE)