aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-08-15 17:10:36 +0200
committerMichał Górny <mgorny@gentoo.org>2016-08-15 17:10:36 +0200
commit1b8b6b120df956f19d0d2dc06e833368e92b632a (patch)
treef9678ae0df8d6c2e2c01cfa9e0dc1d3cb0fc45a2 /packages-inheriting-eclasses.py
parentAdd fix for maintainer-needed.sh from Göktürk Yüksek (gokturk AT binghamto... (diff)
downloadqa-scripts-1b8b6b120df956f19d0d2dc06e833368e92b632a.tar.gz
qa-scripts-1b8b6b120df956f19d0d2dc06e833368e92b632a.tar.bz2
qa-scripts-1b8b6b120df956f19d0d2dc06e833368e92b632a.zip
eclass-usage: Kill wrong timestamp
Diffstat (limited to 'packages-inheriting-eclasses.py')
-rwxr-xr-xpackages-inheriting-eclasses.py4
1 files changed, 1 insertions, 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