=== modified file 'launchpadbugs/utils.py' --- launchpadbugs/utils.py 2008-08-01 16:52:10 +0000 +++ launchpadbugs/utils.py 2008-08-25 20:22:38 +0000 @@ -13,6 +13,7 @@ try: from bzrlib.branch import Branch + from bzrlib import trace HAVE_BZR = True except: HAVE_BZR = False @@ -48,6 +49,8 @@ return "unknown" if HAVE_BZR: try: + trace.be_quiet() + trace.enable_default_logging() version = get_version_from_changelog(path) if os.path.islink(os.path.dirname(__file__)): path = os.path.realpath(os.path.dirname(__file__))