changeset 770:5daf42ba5750 0.6.x

Merge of [847] from trunk.
author hodgestar
date Sat, 24 Apr 2010 16:06:57 +0000
parents 6b9f43a4c8b0
children 73396b124d71
files bitten/build/svntools.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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:
Copyright (C) 2012-2017 Edgewall Software