# HG changeset patch # User Andre Heinecke # Date 1284738353 0 # Node ID e97e8dd52a0ce4c7252dfa539f46747f8f72e98e # Parent fa8a5205698cd8e47eb83a70c05076ee9a075954 Add a Z to the times to underline that we are on UTC time diff -r fa8a5205698c -r e97e8dd52a0c contrib/sawmill/web/templates/details.html --- a/contrib/sawmill/web/templates/details.html Fri Sep 17 06:33:43 2010 +0000 +++ b/contrib/sawmill/web/templates/details.html Fri Sep 17 15:45:53 2010 +0000 @@ -90,7 +90,7 @@ def pretty_time(t, format="%H:%M:%S"): if not t: return "<unknown>" - return t.strftime(format) + return t.strftime(format)+"Z" def pretty_timedelta(a, b): if a is None or b is None: return "<unknown>"