diff options
Diffstat (limited to 'MgaRepo/git.py')
-rw-r--r-- | MgaRepo/git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MgaRepo/git.py b/MgaRepo/git.py index 01f21f0..3576893 100644 --- a/MgaRepo/git.py +++ b/MgaRepo/git.py @@ -19,8 +19,8 @@ class GITLogEntry(VCSLogEntry): class GIT(VCS): vcs_dirname = ".git" vcs_name = "git" - def __init__(self, path=os.path.curdir): - VCS.__init__(self, path) + def __init__(self, path=None, url=None): + VCS.__init__(self, path, url) self.vcs_command = config.get("global", "git-command", ["git"]) self.vcs_supports['clone'] = True self.env_defaults = {"GIT_SSH": self.vcs_wrapper} |