From 96501178486441bd92e1585be5b87283680b30d5 Mon Sep 17 00:00:00 2001 From: WanWizard Date: Fri, 16 Feb 2024 14:24:59 +0000 Subject: [PATCH] fixed typo --- plugin/controllers/models/owibranding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/controllers/models/owibranding.py b/plugin/controllers/models/owibranding.py index 389732ba1..01b38672b 100644 --- a/plugin/controllers/models/owibranding.py +++ b/plugin/controllers/models/owibranding.py @@ -535,7 +535,7 @@ def getAllInfo(): else: # sfx6008type.startswith("10") wifi = None if fileExists("/sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct"): - f = open("//sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct", 'r') + f = open("/sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct", 'r') wifi = f.readline().strip().lower() f.close() if wifi == "f179": @@ -551,7 +551,7 @@ def getAllInfo(): if procmodel.startswith("sf8008"): wifi = None if fileExists("/sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct"): - f = open("//sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct", 'r') + f = open("/sys/devices/platform/soc/f9890000.ehci/usb1/1-1/idProduct", 'r') wifi = f.readline().strip().lower() f.close() if wifi == "c82c":