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

Commit

Permalink
imp: fixes list images output
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Jun 4, 2015
1 parent 2939755 commit 01788ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pub fn run(m: &ArgMatches, cfg: &mut Config) {
CliMessage::Success.display();
for img in v.iter() {
CliMessage::ImageList.display();
println!("\t{}", &img.to_string()[..].replace("$", ""));
println!("\t{}\n", &img.to_string()[..].replace("\n", "\n\t"));
}
if v.is_empty() { println!("\tNo images to dipslay"); }
},
Expand Down

0 comments on commit 01788ec

Please sign in to comment.