Fixed a problem if the user opts to skip parsing a file.

master
Pacman Ghost 7 years ago
parent 941ef99d27
commit a784b963e6
  1. 2
      asl_cards/parse.py

@ -105,6 +105,8 @@ class PdfParser:
if self.cancelling : raise AnalyzeCancelledException()
try :
file_cards = self._do_parse_file( float(file_no)/len(fnames) , fname , max_pages , image_res )
if file_cards is None :
continue
except AnalyzeCancelledException as ex :
raise
except Exception as ex :

Loading…
Cancel
Save