mirror of
https://github.com/86Box/bios-tools.git
synced 2026-02-22 01:25:34 -07:00
AMIUEFIAnalyzer: Remove CR from sign-on
This commit is contained in:
@@ -842,7 +842,7 @@ class AMIUEFIAnalyzer(AMIAnalyzer):
|
||||
self.debug_print('AMI $SGN$ first line:', repr(first_string))
|
||||
|
||||
# Extract sign-on from the second string.
|
||||
self.signon = util.read_string(file_data[string_index:string_index + 256])
|
||||
self.signon = util.read_string(file_data[string_index:string_index + 256]).replace('\r', '')
|
||||
self.debug_print('AMI $SGN$ sign-on:', repr(self.signon))
|
||||
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user