Skip to content

Commit

Permalink
%s -> %q
Browse files Browse the repository at this point in the history
  • Loading branch information
khw7096 committed Apr 3, 2019
1 parent de554e4 commit 95d9f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-hours.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func main() {
os.Exit(1)
}
if stdout.String() == "" {
fmt.Printf("From %s to %s : %s\n", *sincePtr, *beforePtr, total)
fmt.Printf("From %q to %q : %s\n", *sincePtr, *beforePtr, total)
os.Exit(0)
}

Expand Down Expand Up @@ -130,5 +130,5 @@ func main() {
}
beforeCommitTime = t
}
fmt.Printf("From %s to %s : %s\n", *sincePtr, *beforePtr, total)
fmt.Printf("From %q to %q : %s\n", *sincePtr, *beforePtr, total)
}

0 comments on commit 95d9f3f

Please sign in to comment.