From 32ba94008b3626b3f9de5417a48414f4a2967f78 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Fri, 27 Oct 2017 21:22:11 +0200 Subject: [PATCH] Rename 'modules' to 'filelists' to not confuse people Signed-off-by: Patrick Uiterwijk --- roles/bodhi2/backend/files/new-updates-sync | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/bodhi2/backend/files/new-updates-sync b/roles/bodhi2/backend/files/new-updates-sync index 8a640f9d7e..6fe7b107ea 100755 --- a/roles/bodhi2/backend/files/new-updates-sync +++ b/roles/bodhi2/backend/files/new-updates-sync @@ -132,7 +132,7 @@ def sync_ostree(dst, ref): def update_fullfilelist(modules): if not modules: - logger.info('No modulese to update') + logger.info('No filelists to update') return cmd = ['/usr/local/bin/update-fullfiletimelist', '-l', '/tmp/update-fullfiletimelist.lock', '-t', '/pub'] @@ -273,7 +273,7 @@ def main(): to_update.extend(RELEASES[release]['modules']) to_update = list(set(to_update)) - logger.info('Modules to update: %s', to_update) + logger.info('Filelists to update: %s', to_update) update_fullfilelist(to_update)