mirror of
https://github.com/nikolassv/bartib
synced 2024-11-10 14:14:12 +00:00
Fixed formatting
This commit is contained in:
parent
3cdaa4cd7f
commit
8a14a0a87f
1 changed files with 5 additions and 3 deletions
|
@ -342,9 +342,11 @@ fn run_subcommand(matches: &ArgMatches, file_name: &str) -> Result<()> {
|
|||
let processors = create_processors_for_arguments(sub_m);
|
||||
bartib::controller::report::show_report(file_name, filter, processors)
|
||||
}
|
||||
("projects", Some(sub_m)) => {
|
||||
bartib::controller::list::list_projects(file_name, sub_m.is_present("current"), sub_m.is_present("no-quotes"))
|
||||
}
|
||||
("projects", Some(sub_m)) => bartib::controller::list::list_projects(
|
||||
file_name,
|
||||
sub_m.is_present("current"),
|
||||
sub_m.is_present("no-quotes"),
|
||||
),
|
||||
("last", Some(sub_m)) => {
|
||||
let number = get_number_argument_or_ignore(sub_m.value_of("number"), "-n/--number")
|
||||
.unwrap_or(10);
|
||||
|
|
Loading…
Reference in a new issue