From 04cbb64eab4feac6beccfde2b788aba5f763cbb7 Mon Sep 17 00:00:00 2001 From: Gambhiro Date: Mon, 25 Nov 2019 15:37:25 +0000 Subject: [PATCH] fix underscores in name --- json2xlsx/utilities/json2xlsx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json2xlsx/utilities/json2xlsx.py b/json2xlsx/utilities/json2xlsx.py index bafbfae..2e68109 100755 --- a/json2xlsx/utilities/json2xlsx.py +++ b/json2xlsx/utilities/json2xlsx.py @@ -423,7 +423,7 @@ def interpret_render_scr_tree(node): render(workbook, cursor, y_size, x_size, render_state, [render_state['current_table']]) render_state['header_needed'] = False if node_type == 'load': - load_from_json_file_and_render(node['filename'], node['caption'], node['linebyline'] != None) + load_from_json_file_and_render(node['filename'], node['caption'], node['line_by_line'] != None) elif node_type == 'loadcsv': load_from_csv_file_and_render(node['filename'], node['column_order'], node['caption'], node['has_header']) elif node_type == 'save':