Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
Issue #7 Fixed hour format in filename
Browse files Browse the repository at this point in the history
  • Loading branch information
David Matejcek committed May 23, 2015
1 parent 8b1d7b2 commit 5abd3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cardiag/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static void main(final String... args) throws Exception {
final OBD2Standard obd2 = new OBD2Standard(cfg);
try {
if (action == Action.REPORT) {
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_hhmmss.SSS");
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HHmmss.SSS");
if (!homeDir.exists()) {
homeDir.mkdirs();
}
Expand Down

0 comments on commit 5abd3db

Please sign in to comment.