aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/arch.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/arch.py
parenta98bc33f0c1b4a5ade5366b84f1d451d89491a9f (diff)
parent5ccc639e7c04abc97db15eb15677a256e9400b44 (diff)
downloadbugseverywhere-429e33fb4c7be8daa791fb744a14024ef27a72c2.tar.gz
Fix darcs testsuite failure
Diffstat (limited to 'libbe/arch.py')
-rw-r--r--libbe/arch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/arch.py b/libbe/arch.py
index c2d7cde..daa8ac6 100644
--- a/libbe/arch.py
+++ b/libbe/arch.py
@@ -53,8 +53,8 @@ class Arch(vcs.VCS):
_project_name = None
_tmp_project = False
_arch_paramdir = os.path.expanduser("~/.arch-params")
- 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 Arch"""