mirror of
https://github.com/86Box/bios-tools.git
synced 2026-02-24 20:35:33 -07:00
Fix blank sign-on on some Phoenix 4.0 Release 6.0
This commit is contained in:
@@ -1742,7 +1742,7 @@ class PhoenixAnalyzer(Analyzer):
|
||||
|
||||
# Extract any additional information after the version
|
||||
# and modified version numbers as part of the sign-on.
|
||||
additional_info = match.group(4)
|
||||
additional_info = (match.group(4) or '').strip()
|
||||
if additional_info:
|
||||
if additional_info[0] == '.':
|
||||
additional_info = match.group(3).strip() + additional_info.strip()
|
||||
|
||||
Reference in New Issue
Block a user