Remove extra space in string comp

Fixes [30983](https://github.com/ansible/ansible/issues/30983)
pull/21424/merge
bbomgardner 7 years ago committed by Dag Wieers
parent cd5cadfe69
commit c2af15ce74

@ -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…
Cancel
Save