diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-29 11:49:07 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-29 11:49:07 -0700 |
commit | 8c5d4ee034c8aee42a87e33234cb9327892f5d50 (patch) | |
tree | 3830593af0bfceb5494c97bc1056ac123df16693 | |
parent | 5d838eff06dcd42777954878213798ec114c45e1 (diff) | |
download | fatcat-covid19-8c5d4ee034c8aee42a87e33234cb9327892f5d50.tar.gz fatcat-covid19-8c5d4ee034c8aee42a87e33234cb9327892f5d50.zip |
deliver_file2disk.py fixes from prod
-rwxr-xr-x | bin/deliver_file2disk.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/deliver_file2disk.py b/bin/deliver_file2disk.py index 52e0edb..6eaf925 100755 --- a/bin/deliver_file2disk.py +++ b/bin/deliver_file2disk.py @@ -10,8 +10,14 @@ Behavior: - try downloading from any archive.org or web.archive.org URLs - verify SHA-1 - write out to disk + +This file is copied from the fatcat repository. """ +# XXX: some broken MRO thing going on in here due to python3 object wrangling +# in `wayback` library. Means we can't run pylint. +# pylint: skip-file + import os import sys import json |