Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WanWizard committed Feb 16, 2024
1 parent da98cc2 commit 9650117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/controllers/models/owibranding.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand All @@ -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":
Expand Down

0 comments on commit 9650117

Please sign in to comment.