summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-21 18:42:33 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-21 18:42:33 +0100
commit27abcd38c8028b1fb89d01797bfd276136971662 (patch)
tree7859abcea960871aa60f4744b3036a6460cd8d76 /bin/reproducible_html_notes.py
parent15f8d88c91833ab2a127ab112af7d750ba017bf0 (diff)
downloadjenkins.debian.net-27abcd38c8028b1fb89d01797bfd276136971662.tar.xz
reproducible: rename process_packages() to gen_packages_html()
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index faa8807e..6edd0580 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -11,7 +11,7 @@
import yaml
from reproducible_common import *
-from reproducible_html_packages import process_packages
+from reproducible_html_packages import gen_packages_html
NOTES = 'packages.yml'
ISSUES = 'issues.yml'
@@ -268,7 +268,7 @@ def purge_old_notes(notes):
os.remove(NOTES_PATH + '/' + page)
removed_pages.append(pkg)
if removed_pages:
- process_packages(removed_pages)
+ gen_packages_html(removed_pages)
def iterate_over_notes(notes):
num_notes = str(len(notes))
@@ -421,4 +421,4 @@ if __name__ == '__main__':
index_notes(notes, bugs)
index_no_notes(notes, bugs)
purge_old_notes(notes)
- process_packages(notes) # regenerate all rb-pkg/ pages
+ gen_packages_html(notes) # regenerate all rb-pkg/ pages