Remove extra space in string comp

Fixes [30983](https://github.com/ansible/ansible/issues/30983)
This commit is contained in:
bbomgardner 2017-09-27 12:07:48 -04:00 committed by Dag Wieers
parent cd5cadfe69
commit c2af15ce74

View file

@ -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