1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

add continue to simplify logic

This commit is contained in:
Kelly Brazil
2022-01-05 11:39:00 -08:00
parent 8609298449
commit 5c934c43c1

View File

@ -175,6 +175,8 @@ def parse(data, raw=False, quiet=False, ignore_exceptions=False):
filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019')
output_line['file'] = filename output_line['file'] = filename
continue
# line #2 # line #2
if line.startswith(' Size: '): if line.startswith(' Size: '):
line_list = line.split(maxsplit=7) line_list = line.split(maxsplit=7)