Skip to content

Commit 1f75dff

Browse files
committed
fix redundant colon
1 parent 74fb679 commit 1f75dff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sshdconfig/src/get.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ use crate::util::{
2929
///
3030
/// This function will return an error if the desired settings cannot be retrieved.
3131
pub fn invoke_get(input: Option<&String>, setting: &Setting) -> Result<Map<String, Value>, SshdConfigError> {
32-
debug!("{}: {:?}", t!("get.debugSetting").to_string(), setting);
33-
trace!("{}: {:?}", t!("get.traceInput").to_string(), input);
32+
debug!("{} {:?}", t!("get.debugSetting").to_string(), setting);
33+
trace!("{} {:?}", t!("get.traceInput").to_string(), input);
3434
match *setting {
3535
Setting::SshdConfig => {
3636
let cmd_info = build_command_info(input, true)?;

0 commit comments

Comments
 (0)