Merge pull request #196 from alxgu/lvol_fix_casesensitivity

Bugfix PR for lvol: Cast size(LogicalVolumeSize) to lower .
This commit is contained in:
Brian Coca 2015-02-26 08:46:07 -05:00
commit 650d740a3a

View file

@ -132,8 +132,8 @@ def main():
# LVCREATE(8) -L --size option unit
elif size[-1].isalpha():
if size[-1] in 'bBsSkKmMgGtTpPeE':
size_unit = size[-1]
if size[-1].lower() in 'bskmgtpe':
size_unit = size[-1].lower()
if size[0:-1].isdigit():
size = int(size[0:-1])
else: