summaryrefslogtreecommitdiffstats
path: root/sq/src/sq_cli.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-12-09 13:40:45 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-12-09 13:40:45 +0100
commit1b0bcd18d0c0cb9980636f56ce1e03f35c827f16 (patch)
tree0d549ba9cff005f72fae518df874e2c2dfb59fdb /sq/src/sq_cli.rs
parent172955fe39e7b800e06c63ac4ad9bc7d1ed84c56 (diff)
sq: Implement searching hkp servers by email address.
- Fixes #389.
Diffstat (limited to 'sq/src/sq_cli.rs')
-rw-r--r--sq/src/sq_cli.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs
index c4c8fd73..9c56154b 100644
--- a/sq/src/sq_cli.rs
+++ b/sq/src/sq_cli.rs
@@ -304,8 +304,10 @@ pub fn build() -> App<'static, 'static> {
.help("Don't ASCII-armor encode the OpenPGP data"))
.arg(Arg::with_name("query").value_name("QUERY")
.required(true)
- .help("Fingerprint or KeyID of the key \
- to retrieve")))
+ .help(
+ "Fingerprint, KeyID, or email \
+ address of the cert(s) to retrieve"
+ )))
.subcommand(SubCommand::with_name("send")
.about("Sends a key")
.arg(Arg::with_name("input").value_name("FILE")