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 sizes command output
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Jun 4, 2015
1 parent e1fc854 commit 2939755
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 @@ -75,7 +75,7 @@ pub fn run(m: &ArgMatches, cfg: &mut Config) {
CliMessage::Success.display();
for siz in v.iter() {
CliMessage::Size.display();
println!("\t{}", siz);
println!("\t{}\n", &siz.to_string()[..].replace("\n", "\n\t"));
}
if v.is_empty() { println!("\tNo sizes to dipslay"); }
},
Expand Down

0 comments on commit 2939755

Please sign in to comment.