From 612cb2fa2282ccefdafb176ca30e485396616bfe Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Wed, 31 Mar 2021 00:11:05 +0300 Subject: [PATCH] read sign targets from correct path --- src/ahriman/core/sign/gpg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ahriman/core/sign/gpg.py b/src/ahriman/core/sign/gpg.py index bbbf814a..ff835938 100644 --- a/src/ahriman/core/sign/gpg.py +++ b/src/ahriman/core/sign/gpg.py @@ -82,7 +82,7 @@ class GPG: """ targets = { SignSettings.from_option(option) - for option in configuration.getlist("sign", "targets") + for option in configuration.getlist("sign", "target") } default_key = configuration.get("sign", "key") if targets else None return targets, default_key