corpnewt / GenSMBIOS

Py script that uses acidanthera's macserial to generate SMBIOS and optionally saves them to a plist.
MIT License
1.63k stars 241 forks source link

Bug Line 114 #4

Closed ricardo-lou closed 4 years ago

ricardo-lou commented 4 years ago

try: system = "linux" if sys.platform.lower().startsiwth("linux") else sys.platform

Replace with:

try: system = "linux" if sys.platform.lower().startswith("linux") else sys.platform

corpnewt commented 4 years ago

Already fixed - check the latest commit.