Skip to content

Commit

Permalink
#77 Fix parameter handling bug in CreateInfoFileToolCSV
Browse files Browse the repository at this point in the history
Added a parse to the boolean haveHeader parameter
  • Loading branch information
lokm01 committed May 26, 2021
1 parent dfe2c1f commit d1f225c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ object CreateInfoFileToolCSV {
" country historyType [columns for aggregation...]")
System.exit(1)
} else {
(args(0), args(1), args(2).toInt, args(3), args(4), args(5), args(6), args(7), args.slice(8, args.length))
(args(0), args(1), args(2).toInt, args(3), args(4), args(5).toBoolean, args(6), args(7), args.slice(8, args.length))
}
}

Expand Down

0 comments on commit d1f225c

Please sign in to comment.