Fix typo in key name (#52432)
This commit is contained in:
parent
4a94bd8d9d
commit
97ebc95784
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ class DockerHostManager(DockerBaseClass):
|
|||
if self.verbose_output:
|
||||
return self.client.df()
|
||||
else:
|
||||
return dict(LayerSize=self.client.df()['LayersSize'])
|
||||
return dict(LayersSize=self.client.df()['LayersSize'])
|
||||
except APIError as exc:
|
||||
self.client.fail("Error inspecting docker host: %s" % to_native(exc))
|
||||
|
||||
|
|
Loading…
Reference in a new issue