diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 3 | ||||
-rwxr-xr-x | bin/reproducible_html_packages.py | 10 |
2 files changed, 4 insertions, 9 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 79db4f35..6fe0a549 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -343,8 +343,7 @@ def get_bugs(): # init the databases connections conn_db = start_db_connection() # the local sqlite3 reproducible db -try: - conn_udd = start_udd_connection() +conn_udd = start_udd_connection() # do the db querying amount = int(query_db('SELECT count(name) FROM sources')[0][0]) diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index ea38fc2f..242c44a9 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -133,9 +133,8 @@ def process_packages(packages, no_clean=False): generate the /rb-pkg/package.html page packages should be a list """ - try: - bugs = get_bugs() - log.debug(str(len(bugs)) + ' bugs found: ' + str(bugs)) + bugs = get_bugs() + log.debug(str(len(bugs)) + ' bugs found: ' + str(bugs)) total = len(packages) log.info('Generating the pages of ' + str(total) + ' package(s)') for pkg in sorted(packages): @@ -145,10 +144,7 @@ def process_packages(packages, no_clean=False): ' built at ' + build_date) links, default_view = gen_extra_links(pkg, version) - try: - bugs_links = gen_bugs_links(pkg, bugs) - else - bugs_links = "" + bugs_links = gen_bugs_links(pkg, bugs) status, icon = join_status_icon(status, pkg, version) html = html_package_page.substitute(package=pkg, |