diff options
author | Gianluca Montecchi <gian@grys.it> | 2009-10-07 20:41:49 +0200 |
---|---|---|
committer | Gianluca Montecchi <gian@grys.it> | 2009-10-07 20:41:49 +0200 |
commit | c65661ce0bcacf67169faf3f62d495a1e8269aa8 (patch) | |
tree | f803a1417278840c938e4585b4b76bfbb9fd74fe /libbe/git.py | |
parent | 828721071e6283fbf7397ad7ad4b98c5d6ee49bc (diff) | |
download | bugseverywhere-c65661ce0bcacf67169faf3f62d495a1e8269aa8.tar.gz |
Updated to trunk
Diffstat (limited to 'libbe/git.py')
-rw-r--r-- | libbe/git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/git.py b/libbe/git.py index 3abe3b8..628f9b9 100644 --- a/libbe/git.py +++ b/libbe/git.py @@ -36,8 +36,8 @@ class Git(vcs.VCS): name="git" client="git" versioned=True - def _vcs_help(self): - status,output,error = self._u_invoke_client("--help") + def _vcs_version(self): + status,output,error = self._u_invoke_client("--version") return output def _vcs_detect(self, path): if self._u_search_parent_directories(path, ".git") != None : |