mirror of
https://github.com/evilhero/mylar
synced 2025-03-15 08:18:44 +00:00
FIX: Fix for DDL Size incorrectly being parsed
This commit is contained in:
parent
bb9f641727
commit
da2de2feab
1 changed files with 2 additions and 0 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Reference in a new issue