diff options
-rwxr-xr-x | bin/reproducible_scheduler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 3e95ebcc..405ca516 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -52,11 +52,11 @@ def update_sources(suite): sources = lzma.decompress(urlopen(remotefile).read()).decode('utf8') log.debug('\tdownloaded') for arch in ARCHS: - log.info('Updating sources for %s...', arch) - update_sources_tables(suite, arch, sources) + log.info('Updating sources for %s/%s...', suite, arch) + update_sources_db(suite, arch, sources) -def update_sources_tables(suite, arch, sources): +def update_sources_db(suite, arch, sources): # extract relevant info (package name and version) from the sources file new_pkgs = [] for src in deb822.Sources.iter_paragraphs(sources.split('\n')): |