Unverified Commit 889ebb26 authored by Nicolò Lucchesi's avatar Nicolò Lucchesi Committed by GitHub
Browse files

[Misc] Minor typo/grammar in `platforms/interface.py` (#17307)


Signed-off-by: default avatarNickLucche <nlucches@redhat.com>
parent 3ad986c2
...@@ -410,8 +410,8 @@ class Platform: ...@@ -410,8 +410,8 @@ class Platform:
if device is not None and hasattr(device, key): if device is not None and hasattr(device, key):
return getattr(device, key) return getattr(device, key)
else: else:
logger.warning("Current platform %s doesn't has '%s' attribute.", logger.warning("Current platform %s does not have '%s'" \
self.device_name, key) " attribute.", self.device_name, key)
return None return None
@classmethod @classmethod
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment