diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-07-04 10:41:47 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-04 12:47:23 +0200 |
commit | 6161fccd1b27fdf610454a36b9de5687731002e8 (patch) | |
tree | 91ea8a0e2b19b89cfec7995b0d3807f341c8018e | |
parent | 427d1a3184818622b165581bec219603ee8fd181 (diff) | |
download | jenkins.debian.net-6161fccd1b27fdf610454a36b9de5687731002e8.tar.xz |
reproducible: notes: enable the automatic clean up of old issue pages
-rwxr-xr-x | bin/reproducible_html_notes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 5776c3de..5d2d2c44 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -338,8 +338,7 @@ def purge_old_issues(issues): sys.exit(1) if issue not in issues: log.warning('removing ' + '/'.join([root, file]) + '...') - #os.remove('/'.join([root, file])) - log.warning('\t not removing for real now, please enable this') + os.remove('/'.join([root, file])) def iterate_over_notes(notes): |