diff options
| author | Bryan Newbold <bnewbold@archive.org> | 2020-05-21 14:37:12 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-21 14:37:12 -0700 | 
| commit | 3e5a27fa17877efa9d6acfac132edb5cfa14af96 (patch) | |
| tree | 7d192fbe006773e2e87bb6436106ad9edf03207f | |
| parent | e49f806aa9889a9932d6fe1c3f41f401f832b617 (diff) | |
| download | fatcat-scholar-3e5a27fa17877efa9d6acfac132edb5cfa14af96.tar.gz fatcat-scholar-3e5a27fa17877efa9d6acfac132edb5cfa14af96.zip | |
fix typo with UnicodeDecodeError catch
| -rw-r--r-- | fatcat_scholar/work_pipeline.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/fatcat_scholar/work_pipeline.py b/fatcat_scholar/work_pipeline.py index 7100b32..363535c 100644 --- a/fatcat_scholar/work_pipeline.py +++ b/fatcat_scholar/work_pipeline.py @@ -125,7 +125,7 @@ class WorkPipeline():                  )              except FileNotFoundError:                  pass -            except except UnicodeDecodeError: +            except UnicodeDecodeError:                  pass          return None | 
