aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/hg.py
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2009-10-06 10:56:47 -0400
committerChris Ball <cjb@laptop.org>2009-10-06 10:56:47 -0400
commit429e33fb4c7be8daa791fb744a14024ef27a72c2 (patch)
tree1a4b926e19d8a4f41c91c49a3bd1a33fc65f7a72 /libbe/hg.py
parenta98bc33f0c1b4a5ade5366b84f1d451d89491a9f (diff)
parent5ccc639e7c04abc97db15eb15677a256e9400b44 (diff)
downloadbugseverywhere-429e33fb4c7be8daa791fb744a14024ef27a72c2.tar.gz
Fix darcs testsuite failure
Diffstat (limited to 'libbe/hg.py')
-rw-r--r--libbe/hg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/hg.py b/libbe/hg.py
index f8f8121..7cd4c2f 100644
--- a/libbe/hg.py
+++ b/libbe/hg.py
@@ -36,8 +36,8 @@ class Hg(vcs.VCS):
name="hg"
client="hg"
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):
"""Detect whether a directory is revision-controlled using Mercurial"""