From afef7ec59d2bee8cdd93eb3c9f9b3ecf0e97fb71 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sun, 29 Oct 2023 23:39:09 +0100 Subject: [PATCH] fix: Generate correct file name --- app/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/generator.py b/app/generator.py index 30d4615..8f5d73f 100644 --- a/app/generator.py +++ b/app/generator.py @@ -134,7 +134,7 @@ class DonationsGenerator(Generator): def generate(self, config, path): donation = config["links"] - donation_path = join(path, f"donation.json") + donation_path = join(path, f"donations.json") write_json(donation, donation_path)