aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go
index 7deef69..ecc679a 100644
--- a/config/config.go
+++ b/config/config.go
@@ -81,7 +81,7 @@ func LoadConfig(path string) (config Config, err error) {
}
func (c Config) GPGSigner() gpg.Signer {
- return gpg.Signer{c.Signing.Key}
+ return gpg.Signer{Key: c.Signing.Key}
}
func (c Config) GetStorageMethod(name string) (string, error) {