Skip to content

Commit

Permalink
fixed update bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ntatonetti committed Jan 13, 2023
1 parent 3200866 commit 74f11fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/spl_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ def download_and_process_updates(soup, spl_status, proxies={}):
if not download['date'] in spl_status['updates']:
spl_status['updates'][download['date']] = {
'downloaded': 'no',
'verified': 'no'
'verified': 'no',
'parsed': 'no'
}
download_and_verify(download, spl_status['updates'][download['date']], proxies=proxies)
spl_status['updates'][download['date']]['parsed_labels_path'] = spl_status['updates'][download['date']]['local_path'].strip('.zip')
Expand Down

0 comments on commit 74f11fc

Please sign in to comment.