diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-17 14:14:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-17 15:07:17 +0200 |
commit | 77445839207f446eeb5cc3d7f009dfc0773b1de5 (patch) | |
tree | 64790f1196510648f224ebddddf94c38997838fa | |
parent | 9b40113ec2df6af39cbf9c2aa12781751fd0b331 (diff) | |
download | cuirass-77445839207f446eeb5cc3d7f009dfc0773b1de5.tar cuirass-77445839207f446eeb5cc3d7f009dfc0773b1de5.tar.gz |
templates: 'time->string' doesn't show timezone for old builds.
* src/cuirass/templates.scm (time->string): Remove ~z for old builds.
-rw-r--r-- | src/cuirass/templates.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm index a8beb17..9171956 100644 --- a/src/cuirass/templates.scm +++ b/src/cuirass/templates.scm @@ -413,7 +413,7 @@ system whose names start with " (code "guile-") ":" (br) (current (date-year (time-utc->date now*))) (format (if (= year current) "~e ~b ~H:~M ~z" - "~e ~b ~Y ~H:~M ~z"))) + "~e ~b ~Y ~H:~M"))) (date->string date format))))) (define (build-eval-table eval-id builds build-min build-max status) |