aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/cleanups/file_release_bugfix.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-09 19:46:55 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-09 19:46:55 -0800
commitfd0cf6b55567e3081b9e57e2423d6d0e529ace41 (patch)
tree8ab79008ae1fc19d6af381532dcb888538ad7401 /python/fatcat_tools/cleanups/file_release_bugfix.py
parent415cc3c78940247bcb48afcb62a612fec03261eb (diff)
downloadfatcat-fd0cf6b55567e3081b9e57e2423d6d0e529ace41.tar.gz
fatcat-fd0cf6b55567e3081b9e57e2423d6d0e529ace41.zip
cleanups: add more state=active checks
Diffstat (limited to 'python/fatcat_tools/cleanups/file_release_bugfix.py')
-rw-r--r--python/fatcat_tools/cleanups/file_release_bugfix.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_tools/cleanups/file_release_bugfix.py b/python/fatcat_tools/cleanups/file_release_bugfix.py
index 6eb60205..5ac69d1a 100644
--- a/python/fatcat_tools/cleanups/file_release_bugfix.py
+++ b/python/fatcat_tools/cleanups/file_release_bugfix.py
@@ -131,6 +131,10 @@ class FileReleaseBugfix(EntityImporter):
self.counts["skip-existing-not-found"] += 1
return False
+ if existing.state != "active":
+ self.counts["skip-existing-entity-state"] += 1
+ return False
+
if wrong_release_ident not in existing.release_ids:
self.counts["skip-existing-fixed"] += 1
return False