summaryrefslogtreecommitdiffstats
path: root/openpgp/src/types/key_flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/types/key_flags.rs')
-rw-r--r--openpgp/src/types/key_flags.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/types/key_flags.rs b/openpgp/src/types/key_flags.rs
index 9d6123f8..af766b31 100644
--- a/openpgp/src/types/key_flags.rs
+++ b/openpgp/src/types/key_flags.rs
@@ -48,7 +48,7 @@ impl fmt::Debug for KeyFlags {
if self.unknown.len() > 0 {
f.write_str("+0x")?;
f.write_str(
- &crate::conversions::hex::encode_pretty(&self.unknown))?;
+ &crate::fmt::hex::encode_pretty(&self.unknown))?;
}
Ok(())