FIX: Fix for DDL Size incorrectly being parsed

This commit is contained in:
evilhero 2019-01-23 14:17:53 -05:00
parent bb9f641727
commit da2de2feab
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ class GC(object):
if '//' in size:
nwsize = size.find('//')
size = re.sub('\[', '', size[:nwsize]).strip()
if any([size == '-M', size == '-G']):
size = '0 M'
i+=1
dateline = f.find('time')
datefull = dateline['datetime']