summaryrefslogtreecommitdiff
path: root/lorry
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-07 15:20:49 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-07 15:20:49 +0000
commit887f68cc41a76d17af3fa3dcb6949ccee1b57789 (patch)
treeb11714e0f2f203ac5e1566c3450757090ffcfa9e /lorry
parent6a9d24cd5500def07bfb4d85978716aaae8d77ad (diff)
downloadlorry-887f68cc41a76d17af3fa3dcb6949ccee1b57789.tar.gz
Make message go via the progress method so it's quiet by default
Diffstat (limited to 'lorry')
-rwxr-xr-xlorry2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorry b/lorry
index 5641325..c4f58a8 100755
--- a/lorry
+++ b/lorry
@@ -93,7 +93,7 @@ class Lorry(cliapp.Application):
specs = json.load(f)
for name in sorted(specs.keys()):
try:
- print 'Getting: ',name
+ self.progress('Getting: %s' % name)
self.gitify(name, specs[name])
except Exception,e:
status += 1