aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs/git.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-27 10:27:27 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-27 10:27:27 -0500
commit4203368d2a1f9cc794646754a5027e307074fbf6 (patch)
tree213af04295ed8a604a050532e393f970e494f00a /libbe/storage/vcs/git.py
parent8a07fe257946104c80f656617c168a340f4dae77 (diff)
downloadbugseverywhere-4203368d2a1f9cc794646754a5027e307074fbf6.tar.gz
Make VCS error messages and Storage test failures more descriptive
Diffstat (limited to 'libbe/storage/vcs/git.py')
-rw-r--r--libbe/storage/vcs/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py
index 6d3aa87..e2c1b83 100644
--- a/libbe/storage/vcs/git.py
+++ b/libbe/storage/vcs/git.py
@@ -49,7 +49,7 @@ class Git(base.VCS):
def _vcs_version(self):
status,output,error = self._u_invoke_client('--version')
- return output
+ return output.strip()
def _vcs_get_user_id(self):
status,output,error = \