From: Felipe Contreras Date: Fri, 26 Apr 2013 21:12:37 +0000 (-0500) Subject: remote-bzr: tell bazaar to be quiet X-Git-Tag: v1.8.3-rc0~7 X-Git-Url: https://repo.or.cz/w/git.git/commitdiff_plain/4d74cd4725da4b575baf2dc20ebee18d49885c4e remote-bzr: tell bazaar to be quiet Otherwise we get notification, progress bars, and what not. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr index 34f6156576..6ccca8e7dc 100755 --- a/contrib/remote-helpers/git-remote-bzr +++ b/contrib/remote-helpers/git-remote-bzr @@ -26,6 +26,7 @@ bzrlib.plugin.load_plugins() import bzrlib.generate_ids import bzrlib.transport import bzrlib.errors +import bzrlib.ui import sys import os @@ -755,6 +756,8 @@ def main(args): if not os.path.exists(dirname): os.makedirs(dirname) + bzrlib.ui.ui_factory.be_quiet(True) + repo = get_repo(url, alias) marks_path = os.path.join(dirname, 'marks-int')