Remove extra space in string comp
Fixes [30983](https://github.com/ansible/ansible/issues/30983)
This commit is contained in:
parent
cd5cadfe69
commit
c2af15ce74
1 changed files with 1 additions and 1 deletions
|
@ -925,7 +925,7 @@ class PyVmomiHelper(object):
|
|||
return expected * 1024 * 1024 * 1024
|
||||
elif unit == 'gb':
|
||||
return expected * 1024 * 1024
|
||||
elif unit == ' mb':
|
||||
elif unit == 'mb':
|
||||
return expected * 1024
|
||||
elif unit == 'kb':
|
||||
return expected
|
||||
|
|
Loading…
Reference in a new issue