summaryrefslogtreecommitdiffstats
path: root/tool/src
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src')
-rw-r--r--tool/src/commands/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index ce228b2d..b4350dfb 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -50,7 +50,7 @@ fn get_signing_keys(certs: &[openpgp::Cert])
let mut keys = Vec::new();
'next_cert: for tsk in certs {
for key in tsk.keys_valid()
- .signing_capable()
+ .for_signing()
.map(|k| k.2)
{
if let Some(secret) = key.secret() {