From fa35a70f9fe10b26e5e6a514d06921964086f043 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Tue, 19 Dec 2017 10:17:15 -0500 Subject: [PATCH] CODE: Update main loop to reflect the template change in 34b71ba. --- CODE.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE.rst b/CODE.rst index 803aa9e..10d9033 100644 --- a/CODE.rst +++ b/CODE.rst @@ -88,7 +88,7 @@ At a high level, import2ledger handles each input file this way:: for hook in all_hooks: hook.run(entry_data) if entry_data: - template.render(**entry_data) + template.render(entry_data) Note in particular that multiple importers can handle the same input file. This helps support inputs like Patreon's earnings CSV, where completely different transactions are generated from the same source.