Skip to content

Commit

Permalink
fix(representations): removed empty line at end of outputs of lists
Browse files Browse the repository at this point in the history
  • Loading branch information
sebinsua committed Jan 5, 2016
1 parent fa8f9e4 commit 50a8067
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/command/list_counterparties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn represent_list_counterparties(counterparties: &Vec<(String, String)>,

let counterparties_str = to_aligned_table(&counterparties_table);

println!("{}", counterparties_str)
print!("{}", counterparties_str)
}

pub fn list_counterparties_command(config: &Config,
Expand Down
2 changes: 1 addition & 1 deletion src/command/list_transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn represent_list_transactions(transactions: &Vec<Transaction>,

let transactions_str = to_aligned_table(&transactions_table);

println!("{}", transactions_str)
print!("{}", transactions_str)
}

pub fn list_transactions_command(config: &Config,
Expand Down
2 changes: 1 addition & 1 deletion src/command/representations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub fn represent_list_accounts(accounts: &Vec<Account>, config: &Config) {

let accounts_str = to_aligned_table(&accounts_table);

println!("{}", accounts_str)
print!("{}", accounts_str)
}

pub fn represent_list_amounts(amount_type: &str,
Expand Down

0 comments on commit 50a8067

Please sign in to comment.