aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_covid19/derivatives.py
diff options
context:
space:
mode:
Diffstat (limited to 'fatcat_covid19/derivatives.py')
-rw-r--r--fatcat_covid19/derivatives.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_covid19/derivatives.py b/fatcat_covid19/derivatives.py
index 5ade0ef..c9339e8 100644
--- a/fatcat_covid19/derivatives.py
+++ b/fatcat_covid19/derivatives.py
@@ -126,7 +126,7 @@ def enrich_derivatives_file(json_input, json_output, base_dir):
"""
for l in json_input:
l = json.loads(l)
- result = do_line(l, base_dir)
+ result = enrich_derivatives_row(l, base_dir)
if result:
print(json.dumps(result, sort_keys=True), file=json_output)