Improve output when retracting a link.

This commit is contained in:
Neal H. Walfield 2024-10-16 10:52:36 +02:00
parent 386992f14f
commit f2566473e1
No known key found for this signature in database
GPG Key ID: 6863C9AD5B4D22D3

View File

@ -382,8 +382,13 @@ The certifier is the same as the certificate to certify."));
}
}
qprintln!("Certifying {:?} for {}.",
userid_str(), cert.fingerprint());
if retract {
qprintln!("Retracting {:?} for {}.",
userid_str(), cert.fingerprint());
} else {
qprintln!("Certifying {:?} for {}.",
userid_str(), cert.fingerprint());
}
let mut sigs = builders.iter()
.map(|builder| {