Correct formatting of a warning when lshw cannot be run
Change-Id: I7c55aee4b3b52cb414a595cf548e1f22e954f619
(cherry picked from commit 69064a8610)
This commit is contained in:
@@ -822,7 +822,7 @@ class GenericHardwareManager(HardwareManager):
|
||||
try:
|
||||
sys_dict = _get_system_lshw_dict()
|
||||
except (processutils.ProcessExecutionError, OSError, ValueError) as e:
|
||||
LOG.warning('Could not retrieve vendor info from lshw: %e', e)
|
||||
LOG.warning('Could not retrieve vendor info from lshw: %s', e)
|
||||
sys_dict = {}
|
||||
return SystemVendorInfo(product_name=sys_dict.get('product', ''),
|
||||
serial_number=sys_dict.get('serial', ''),
|
||||
|
||||
Reference in New Issue
Block a user