1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

fw/workload: Fix Typo

This commit is contained in:
Marc Bonnici 2019-01-30 15:16:36 +00:00 committed by setrofim
parent a2087ea467
commit 9f88459f56

View File

@ -73,7 +73,7 @@ class Workload(TargetedPlugin):
supported_platforms = getattr(self, 'supported_platforms', []) supported_platforms = getattr(self, 'supported_platforms', [])
if supported_platforms and self.target.os not in supported_platforms: if supported_platforms and self.target.os not in supported_platforms:
msg = 'Supported platforms for "{}" are "{}", attemping to run on "{}"' msg = 'Supported platforms for "{}" are "{}", attempting to run on "{}"'
raise WorkloadError(msg.format(self.name, ' '.join(self.supported_platforms), raise WorkloadError(msg.format(self.name, ' '.join(self.supported_platforms),
self.target.os)) self.target.os))