mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Remove extra space in string comp
Fixes [30983](https://github.com/ansible/ansible/issues/30983)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user