summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-08-15 15:05:19 +0100
committerRichard Hughes <richard@hughsie.com>2014-08-18 10:44:54 +0100
commit5a7c698b1e34c4d8c7b40b1a5c19b90d9fe720a3 (patch)
tree66608ba47896b18ff8677a1f8c9998a7f33b1312
parent8ab63662d0a7047b07baefc20b81b6ba52be1714 (diff)
downloadappstream-glib-5a7c698b1e34c4d8c7b40b1a5c19b90d9fe720a3.tar.gz
trivial: Be less verbose when downloading Fedora packages
-rwxr-xr-xcontrib/packages/fedora-download-cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/packages/fedora-download-cache.py b/contrib/packages/fedora-download-cache.py
index 097569a..7f521a7 100755
--- a/contrib/packages/fedora-download-cache.py
+++ b/contrib/packages/fedora-download-cache.py
@@ -214,7 +214,7 @@ def update():
print("INFO: Downloading packages...")
matched_packages.sort()
for pkg in matched_packages:
- print("INFO: Checking for %s..." % pkg.name)
+ #print("INFO: Checking for %s..." % pkg.name)
ensure_pkg_exists(yb, existing, pkg)
for require in pkg.strong_requires_names:
# remove helpful package suffixes
@@ -228,7 +228,7 @@ def update():
continue
if dep.base_package_name != pkg.base_package_name and not require.startswith(pkg.name):
continue
- print ("INFO: " + pkg.name + " also needs " + require)
+ #print ("INFO: " + pkg.name + " also needs " + require)
if require in extra_packages:
print("WARNING: Remove %s from whitelist" % require)
ensure_pkg_exists(yb, existing, dep)