aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/refcat/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py
index e2e0c64..4265050 100644
--- a/python/refcat/tasks.py
+++ b/python/refcat/tasks.py
@@ -1549,7 +1549,7 @@ class UnmatchedRefsReparse(Refcat):
with self.output().open("w") as output:
with self.input().open() as f:
for i, line in enumerate(f):
- if i % 10000 == 0:
+ if i % 100000 == 0:
self.logger.debug("@{}".format(i))
doc = json.loads(line)
if not "unstructured" in doc: