aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/svn.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/svn.py')
-rw-r--r--MgaRepo/svn.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/MgaRepo/svn.py b/MgaRepo/svn.py
index 3a74954..120c19c 100644
--- a/MgaRepo/svn.py
+++ b/MgaRepo/svn.py
@@ -12,10 +12,11 @@ class SVNLogEntry(VCSLogEntry):
VCSLogEntry.__init__(self, revision, author, data)
class SVN(VCS):
+ vcs_dirname = ".svn"
def __init__(self):
VCS.__init__(self)
self.vcs_name = "svn"
- self.vcs_command = config.get("global", "svn-command", "svn")
+ self.vcs_command = config.get("global", "svn-command", ["svn"])
self.env_defaults = {"SVN_SSH": self.vcs_wrapper}
class SVNLook(VCSLook):