diff options
-rwxr-xr-x | bin/reproducible_html_packages.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 9b44cdaf..eed35894 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -208,6 +208,7 @@ def purge_old_pages(): log.info('There is no package named ' + pkg + ' from ' + suite + '/' + arch + ' in the database. ' + 'Removing old page.') - os.remove(RB_PKG_PATH + '/' + suite + '/' + arch + '/' + - page) + pkg_file=RB_PKG_PATH + '/' + suite + '/' + arch + '/' + page + if os.path.isfile(pkg_file): + os.remove(pkg_file) |