diff options
-rw-r--r-- | RepSys/svn.py | 3 |
1 files changed, 2 insertions, 1 deletions
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", |