diff --git a/mylar/getcomics.py b/mylar/getcomics.py index 052f2fb7..ac5bbbe1 100644 --- a/mylar/getcomics.py +++ b/mylar/getcomics.py @@ -102,6 +102,9 @@ class GC(object): size = re.sub('MB', 'M', size).strip() elif 'GB' in size: size = re.sub('GB', 'G', size).strip() + if '//' in size: + nwsize = size.find('//') + size = re.sub('\[', '', size[:nwsize]).strip() i+=1 dateline = f.find('time') datefull = dateline['datetime']