Skip to content

Commit

Permalink
Fix failing CI due to formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Oct 18, 2018
1 parent 19bb81d commit d0ccfaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,11 @@ fn main() -> Result<(), Box<Error>> {
}
let end = Instant::now();
if verbose {
println!("Took {:?} to parse {}", end.duration_since(start), repo.name);
println!(
"Took {:?} to parse {}",
end.duration_since(start),
repo.name
);
}
println!("{}", repo);
for mut author in repo.authors.values() {
Expand Down

0 comments on commit d0ccfaf

Please sign in to comment.