aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs/git.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-27 10:29:40 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-27 10:29:40 -0500
commit65c99d658fac188e2f18f50a14d9c5d94a0b0314 (patch)
tree065e68adbb7409d3524ed7f0a748cb47c88ec376 /libbe/storage/vcs/git.py
parentea9101f85a70d2978a138425dc8d0699dc8eb05e (diff)
parent4203368d2a1f9cc794646754a5027e307074fbf6 (diff)
downloadbugseverywhere-65c99d658fac188e2f18f50a14d9c5d94a0b0314.tar.gz
Merged clarifications requested by Ben Finney
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 = \