From 438eade413b44d3713f020e672ec74a8597efbfe Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Sun, 14 Aug 2016 18:02:32 +0900 Subject: [PATCH] init: Respect --quiet option when synching manifest repository Change-Id: Ib58b7dd971670e0888e6428333050700e776b0de --- subcmds/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subcmds/init.py b/subcmds/init.py index b8e3de5a..77153eda 100644 --- a/subcmds/init.py +++ b/subcmds/init.py @@ -222,7 +222,7 @@ to update the working directory files. 'in another location.', file=sys.stderr) sys.exit(1) - if not m.Sync_NetworkHalf(is_new=is_new): + if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet): r = m.GetRemote(m.remote.name) print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)