summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-02 10:35:11 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-02 10:35:11 +0200
commitc75a4d60e6a10b3559370498a99ab946f6846043 (patch)
tree3d24bf9c881d95661c298ab6485dbadc888f051f /tool
parent779839516db95a9f8498da25cdf4e965f6e10027 (diff)
openpgp: Drop KeyID::from_hex in favor of FromStr.
- See #462.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/sq.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/sq.rs b/tool/src/sq.rs
index 27e7c49f..3e371927 100644
--- a/tool/src/sq.rs
+++ b/tool/src/sq.rs
@@ -484,7 +484,7 @@ fn main() -> Result<()> {
match m.subcommand() {
("get", Some(m)) => {
let keyid = m.value_of("keyid").unwrap();
- let id = openpgp::KeyID::from_hex(keyid);
+ let id = keyid.parse();
if id.is_err() {
eprintln!("Malformed key ID: {:?}\n\
(Note: only long Key IDs are supported.)",