From 199df870bed99b6846a109e509fabb237573aabd Mon Sep 17 00:00:00 2001 From: Terrtia Date: Thu, 30 Apr 2020 09:23:51 +0200 Subject: [PATCH] fix: [importer] fix typo --- bin/import/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/import/importer.py b/bin/import/importer.py index 30130254..760e99d5 100755 --- a/bin/import/importer.py +++ b/bin/import/importer.py @@ -104,7 +104,7 @@ def api_import_json_item(data_json): return ({'status': 'error', 'reason': 'Malformed JSON'}, 400) # # TODO: add JSON verification - res = add_json_to_json_queue(item_json) + res = add_json_to_json_queue(data_json) if res: return ({'status': 'error'}, 400) return ({'status': 'success'}, 200)