summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-04-28 11:56:27 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2015-05-06 15:49:47 +0000
commit07a0b8322d2925e2c813a7f5541b0593c46f6693 (patch)
tree64270787df55969bec385e1d54f3b28f011694e9 /morphlib/localrepocache.py
parent11391bcb949b19bc542f9a46b4392db01b3c7b93 (diff)
downloadmorph-07a0b8322d2925e2c813a7f5541b0593c46f6693.tar.gz
Show progress of downloads when --verbose is passed, not --debug
This commit undoes behaviour changes from commit aa6dfcbb70c03dfeb3f9af02. Change-Id: Ie677fb9c4e6bcd6edeba2cdd87f4f6125dcae7a4
Diffstat (limited to 'morphlib/localrepocache.py')
-rw-r--r--morphlib/localrepocache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/localrepocache.py b/morphlib/localrepocache.py
index 53f3d5a4..3c00756c 100644
--- a/morphlib/localrepocache.py
+++ b/morphlib/localrepocache.py
@@ -118,7 +118,7 @@ class LocalRepoCache(object):
self._app.status(msg="Trying to fetch %(tarball)s to seed the cache",
tarball=url, chatty=True)
- if self._app.settings['debug']:
+ if self._app.settings['verbose']:
verbosity_flags = []
kwargs = dict(stderr=sys.stderr)
else: