We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 51a37c6 + 423a723 commit 26f5960Copy full SHA for 26f5960
src/commands/list.rs
@@ -6,6 +6,7 @@ pub fn list(matches: &ArgMatches, api: &mut API) -> Result<(), APIError> {
6
let drinks = api.get_status_for_machine(matches.value_of("machine"))?;
7
8
for machine in drinks.machines {
9
+ println!();
10
let subject_line = format!("{} ({})", machine.display_name, machine.name);
11
println!("{}", &subject_line);
12
println!("{}", "=".repeat(subject_line.len()));
0 commit comments