summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-08-15 15:05:19 +0100
committerRichard Hughes <richard@hughsie.com>2014-08-15 15:05:48 +0100
commita40c27bb3a60074a48afabcd28a2ee6a6933dd62 (patch)
tree35a417452058490065298a62dc6f0599a82c9ab9 /contrib
parent45c08980d5febabfcfe300b2135786fb9a9b6784 (diff)
downloadappstream-glib-a40c27bb3a60074a48afabcd28a2ee6a6933dd62.tar.gz
trivial: Be less verbose when downloading Fedora packages
Diffstat (limited to 'contrib')
-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)