From adf9d2df02efa19826ad910948da0957458fc333 Mon Sep 17 00:00:00 2001 From: Adam Kariv Date: Sun, 12 Jan 2025 17:28:26 +0200 Subject: [PATCH] Fix typo --- datapackage_pipelines_budgetkey/processors/add_doc_id.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapackage_pipelines_budgetkey/processors/add_doc_id.py b/datapackage_pipelines_budgetkey/processors/add_doc_id.py index 0cc580cb..69056566 100644 --- a/datapackage_pipelines_budgetkey/processors/add_doc_id.py +++ b/datapackage_pipelines_budgetkey/processors/add_doc_id.py @@ -25,7 +25,7 @@ def flow(parameters): return Flow( add_field('doc_id', 'string', get_doc_id(key_pattern), **{'es:index': False}), - add_field('item-url', 'string', get_item_link(key_pattern), **{'es:index': False}), + add_field('item-url', 'string', get_item_url(key_pattern), **{'es:index': False}), )