diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-05-03 16:38:50 +0000 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-05-03 16:39:49 +0000 |
commit | 9c593381a09b1911419e1a67b6af17eb7d801308 (patch) | |
tree | f1bbb677517c6d37e25c621a61f96b68808a11da | |
parent | 886bf3329c7027ded79ec0b59184f1fcb047130d (diff) |
Report: Add time to the timestamp
Change-Id: I1343e84353230329362848d1389ae41b169d2791
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | resources/tools/presentation/generator_report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_report.py b/resources/tools/presentation/generator_report.py index 94ba2ff0d9..dd31a9a43f 100644 --- a/resources/tools/presentation/generator_report.py +++ b/resources/tools/presentation/generator_report.py @@ -103,7 +103,7 @@ def generate_html_report(release, spec, versions): cmd = HTML_BUILDER.format( release=release, - date=datetime.date.today().strftime('%d-%b-%Y'), + date=datetime.datetime.utcnow().strftime('%m/%d/%Y %H:%M (UTC)'), working_dir=spec.environment["paths"]["DIR[WORKING,SRC]"], build_dir=spec.environment["paths"]["DIR[BUILD,HTML]"]) execute_command(cmd) |