# HG changeset patch # User hodgestar # Date 1272125128 0 # Node ID e9bb76068e4910963691adaea22cde46fbcccb8e # Parent 0fdc8aaeb436210b629d27000278619c4d97c167 Make svn:checkout command's verbose flag behave more rationally (Fixes #574. Patch from Neil Muller). diff --git a/bitten/build/svntools.py b/bitten/build/svntools.py --- a/bitten/build/svntools.py +++ b/bitten/build/svntools.py @@ -67,7 +67,7 @@ if errors: raise Error, errors -def checkout(ctxt, url, path=None, revision=None, dir_='.', verbose=False, shared_path=None, +def checkout(ctxt, url, path=None, revision=None, dir_='.', verbose='false', shared_path=None, username=None, password=None): """Perform a checkout from a Subversion repository. @@ -96,7 +96,7 @@ args += [final_url, dir_] cofilter = None - if not verbose: + if verbose.lower() == 'false': cre = re.compile(r'^[AU]\s.*$') cofilter = lambda s: cre.sub('', s) if shared_path is not None: