# HG changeset patch # User Andrew Shadura # Date 1362928346 -3600 # Node ID 82289176717dbc7581e268a572d10c8a5834c825 # Parent 814498f80d7d658a3753fa8635d80357e796be7f hgk: don't use fixed format for dates Don't pass -format with a date format string, use default instead so users can use their own preferences. diff -r 814498f80d7d -r 82289176717d contrib/hgk --- a/contrib/hgk Sun Mar 10 16:07:57 2013 +0100 +++ b/contrib/hgk Sun Mar 10 16:12:26 2013 +0100 @@ -380,11 +380,11 @@ } } if {$audate != {}} { - set audate [clock format $audate -format "%Y-%m-%d %H:%M:%S"] + set audate [clock format $audate] } if {$comdate != {}} { set cdate($id) $comdate - set comdate [clock format $comdate -format "%Y-%m-%d %H:%M:%S"] + set comdate [clock format $comdate] } set commitinfo($id) [list $headline $auname $audate \ $comname $comdate $comment $rev $branch $bookmark]