Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
imp: fixes ssh_keys api
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Jun 5, 2015
1 parent 6f1d64c commit 06c7b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request/builder/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl<'t, T> fmt::Display for RequestBuilder<'t, T> {
self.method,
self.auth,
if !self.url.is_empty() { self.url.clone() } else { "None".to_owned() },
if let Some(ref bdy) = self.body { format!("\n\t{}", bdy) } else { "None".to_owned() } )
if let Some(ref bdy) = self.body { format!("{}", bdy) } else { "None".to_owned() } )
}
}

Expand Down

0 comments on commit 06c7b76

Please sign in to comment.