mirror of
https://github.com/86Box/bios-tools.git
synced 2026-02-22 17:45:32 -07:00
Fix SystemSoft copyright sign-on lines not being detected
This commit is contained in:
@@ -2531,7 +2531,7 @@ class SystemSoftAnalyzer(Analyzer):
|
||||
match = self._signon_pattern.search(file_data)
|
||||
if match:
|
||||
signon_line = match.group(1)
|
||||
if signon_line[:9] == 'Copyright' and ('SystemSoft' in signon_line or 'Insyde' in signon_line):
|
||||
if signon_line[:9] == b'Copyright' and (b'SystemSoft' in signon_line or b'Insyde' in signon_line):
|
||||
# Skip SystemSoft copyright line.
|
||||
pass
|
||||
elif signon_line:
|
||||
|
||||
Reference in New Issue
Block a user