summaryrefslogtreecommitdiff
path: root/scraper/s2-dump-missing-paper-ids.py
diff options
context:
space:
mode:
Diffstat (limited to 'scraper/s2-dump-missing-paper-ids.py')
-rw-r--r--scraper/s2-dump-missing-paper-ids.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scraper/s2-dump-missing-paper-ids.py b/scraper/s2-dump-missing-paper-ids.py
index bf0b7e50..b30fe167 100644
--- a/scraper/s2-dump-missing-paper-ids.py
+++ b/scraper/s2-dump-missing-paper-ids.py
@@ -22,7 +22,8 @@ def load_missing_ids(fn):
for paper_id in ids:
db_paper_path = make_db_paper_path(paper_id)
raw_paper_path = make_raw_paper_path(paper_id)
- if os.path.exists(db_paper_path) or os.path.exists(raw_paper_path):
+ # if os.path.exists(db_paper_path) or os.path.exists(raw_paper_path):
+ if os.path.exists(raw_paper_path):
lookup[paper_id] = True
found_count += 1
else: