summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
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