1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

RuntimeConfig: Fixed typo

This commit is contained in:
Marc Bonnici 2017-07-24 17:35:34 +01:00
parent ae0847e815
commit 06be73f8e1

View File

@ -191,7 +191,7 @@ class SysfileValuesRuntimeConfig(RuntimeConfig):
if path in obj.sysfile_values:
msg = 'Syspath "{}:{}" already specified with a value of "{}"'
raise ConfigError(msg.foramt(path, value, obj.sysfile_values[path][0]))
raise ConfigError(msg.format(path, value, obj.sysfile_values[path][0]))
obj.sysfile_values[path] = (value, verify)