diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-01-16 21:36:50 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-16 21:36:50 +0100 |
commit | 58aaa864f9747d27c065739256d4c6635ca9b751 (patch) | |
tree | 9888ae0bd2345816d1ab479dd34b4c6b902c158a /bsie/lib/pipeline.py | |
parent | 4f868bcb3be2658960eace3222563cc9a819366a (diff) | |
download | bsie-58aaa864f9747d27c065739256d4c6635ca9b751.tar.gz bsie-58aaa864f9747d27c065739256d4c6635ca9b751.tar.bz2 bsie-58aaa864f9747d27c065739256d4c6635ca9b751.zip |
minor fixes
Diffstat (limited to 'bsie/lib/pipeline.py')
-rw-r--r-- | bsie/lib/pipeline.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bsie/lib/pipeline.py b/bsie/lib/pipeline.py index 02119bc..44685ba 100644 --- a/bsie/lib/pipeline.py +++ b/bsie/lib/pipeline.py @@ -125,7 +125,6 @@ class Pipeline(): try: # get content content = rdr(path) if rdr is not None else None - #logger.info('extracted %s from %s', rdr, path) # apply extractors on this content @@ -139,7 +138,7 @@ class Pipeline(): # critical extractor failure. logger.error('%s failed to extract triples from content: %s', ext, err) - except errors.UnsupportedFileFormatError as err: + except errors.UnsupportedFileFormatError: # failed to read the file format. skip. #logger.warning('%s could not process the file format of %s', rdr, err) pass |