mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix typo in key name (#52432)
This commit is contained in:
committed by
ansibot
parent
4a94bd8d9d
commit
97ebc95784
@@ -232,7 +232,7 @@ class DockerHostManager(DockerBaseClass):
|
|||||||
if self.verbose_output:
|
if self.verbose_output:
|
||||||
return self.client.df()
|
return self.client.df()
|
||||||
else:
|
else:
|
||||||
return dict(LayerSize=self.client.df()['LayersSize'])
|
return dict(LayersSize=self.client.df()['LayersSize'])
|
||||||
except APIError as exc:
|
except APIError as exc:
|
||||||
self.client.fail("Error inspecting docker host: %s" % to_native(exc))
|
self.client.fail("Error inspecting docker host: %s" % to_native(exc))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user