From 970849f41b0370f1b225d53ee39a8fd3ed07eab3 Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Tue, 5 Feb 2008 20:57:03 +0000 Subject: Don't use --non-interactive with the commands "add", "revert" and "cleanup" --- RepSys/svn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'RepSys/svn.py') diff --git a/RepSys/svn.py b/RepSys/svn.py index 4b1e9da..7459033 100644 --- a/RepSys/svn.py +++ b/RepSys/svn.py @@ -19,7 +19,8 @@ class SVNLogEntry: class SVN: def _execsvn(self, *args, **kwargs): - if not kwargs.get("show"): + localcmds = ("add", "revert", "cleanup") + if not kwargs.get("show") and args[0] not in localcmds: args = list(args) args.append("--non-interactive") svn_command = config.get("global", "svn-command", -- cgit v1.2.1