diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-27 10:27:27 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-27 10:27:27 -0500 |
commit | 4203368d2a1f9cc794646754a5027e307074fbf6 (patch) | |
tree | 213af04295ed8a604a050532e393f970e494f00a /libbe/storage/vcs/arch.py | |
parent | 8a07fe257946104c80f656617c168a340f4dae77 (diff) | |
download | bugseverywhere-4203368d2a1f9cc794646754a5027e307074fbf6.tar.gz |
Make VCS error messages and Storage test failures more descriptive
Diffstat (limited to 'libbe/storage/vcs/arch.py')
-rw-r--r-- | libbe/storage/vcs/arch.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libbe/storage/vcs/arch.py b/libbe/storage/vcs/arch.py index 74ba371..bfccf59 100644 --- a/libbe/storage/vcs/arch.py +++ b/libbe/storage/vcs/arch.py @@ -72,7 +72,8 @@ class Arch(base.VCS): def _vcs_version(self): status,output,error = self._u_invoke_client('--version') - return output + version = '\n'.join(output.splitlines()[:2]) + return version def _vcs_detect(self, path): """Detect whether a directory is revision-controlled using Arch""" @@ -307,7 +308,8 @@ class Arch(base.VCS): return base.VCS._vcs_get_file_contents(self, relpath) def _vcs_path(self, id, revision): - raise NotImplementedError + raise NotImplementedError( + 'Too little Arch understanding at the moment...') def _vcs_commit(self, commitfile, allow_empty=False): if allow_empty == False: @@ -356,7 +358,8 @@ class Arch(base.VCS): return '%s--%s' % (self._archive_project_name(), log) def _vcs_changed(self, revision): - raise NotImplementedError + raise NotImplementedError( + 'Too little Arch understanding at the moment...') if libbe.TESTING == True: |