commit: b95ceb616795c9ff7906c05dd640c1f335d3f1f2
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 18 10:42:38 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 10:42:38 2019 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b95ceb61
scripts/auto-bootstraps/analyse_result: use standard date format
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
scripts/auto-bootstraps/analyse_result.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/auto-bootstraps/analyse_result.py
b/scripts/auto-bootstraps/analyse_result.py
index ca6621554f..90312300db 100755
--- a/scripts/auto-bootstraps/analyse_result.py
+++ b/scripts/auto-bootstraps/analyse_result.py
@@ -191,7 +191,7 @@ with open(os.path.join(resultsdir, 'index.html'), "w") as h:
h.write("</tr>")
h.write("</table>")
- now = time.strftime('%Y-%m-%d %H:%M', time.gmtime())
+ now = time.strftime('%Y-%m-%dT%H:%MZ', time.gmtime())
h.write("<p><i>generated: %s</i></p>" % now)
h.write("<p>See also <a
href='https://dev.azure.com/12719821/12719821/_build?definitionId=6'>awesomebytes</a>")
h.write(" and <a
href='https://dev.azure.com/gentoo-prefix/ci-builds/_build/'>Azure Gentoo
Prefix CI pipelines</a></p>")