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

Signed-off-by: NickLucche <nlucches@redhat.com>
This commit is contained in:
Nicolò Lucchesi
2025-04-28 14:45:42 +02:00
committed by GitHub
parent 3ad986c28b
commit 889ebb2638

View File

@@ -410,8 +410,8 @@ class Platform:
if device is not None and hasattr(device, key):
return getattr(device, key)
else:
logger.warning("Current platform %s doesn't has '%s' attribute.",
self.device_name, key)
logger.warning("Current platform %s does not have '%s'" \
" attribute.", self.device_name, key)
return None
@classmethod