From 5f1a15b9c7b253c0267d05613683ac1fb5f88e6c Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Tue, 5 Jun 2007 19:17:27 +0000 Subject: Improved (and fixed) the support to mirrors and "switch" subcommand - added the switch subcommand to quickly switch between the default and the mirrored repositories - fixed bug of generating bogus mirror URLs - make "ci" smarter by only relocation if something has been changed in the working copy and it is not already relocated. --- RepSys/svn.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'RepSys/svn.py') diff --git a/RepSys/svn.py b/RepSys/svn.py index b4ad4e9..cc3811d 100644 --- a/RepSys/svn.py +++ b/RepSys/svn.py @@ -189,6 +189,8 @@ class SVN: cmd.append("-v") if kwargs.get("noignore"): cmd.append("--no-ignore") + if kwargs.get("quiet"): + cmd.append("--quiet") status, output = self._execsvn(*cmd, **kwargs) if status == 0: return [x.split() for x in output.splitlines()] -- cgit v1.2.1