commit: 1b8b6b120df956f19d0d2dc06e833368e92b632a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 15:10:36 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 15:10:36 2016 +0000
URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=1b8b6b12
eclass-usage: Kill wrong timestamp
packages-inheriting-eclasses.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/packages-inheriting-eclasses.py b/packages-inheriting-eclasses.py
index f9636b6..61b4ab0 100755
--- a/packages-inheriting-eclasses.py
+++ b/packages-inheriting-eclasses.py
@@ -42,14 +42,12 @@ def main(argv):
<body>
<h1>Packages inheriting eclasses</h1>
- <p>(tree synced at %s UTC)</p>
-
<ul>
%s
<li><a href="/">/ (go back)</a></li>
</ul>
</body>
-</html>''' % (max([len(e) for e in output]),
datetime.datetime.fromtimestamp(os.path.getmtime(portdir.location)).strftime("%a
%b %d %Y %H:%M:%S"), '\n'.join(['<li><a href="%s.txt">%s.eclass</a> (%d
packages),</li>' % (e, e, len(output[e])) for e in sorted(output)])))
+</html>''' % (max([len(e) for e in output]), '\n'.join(['<li><a
href="%s.txt">%s.eclass</a> (%d packages),</li>' % (e, e, len(output[e])) for e
in sorted(output)])))
f.close()
return 0