diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-27 16:50:34 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-27 16:50:34 -0500 |
commit | 9b42ab6d3e2372c2c0f26a0788f8b84d1d346171 (patch) | |
tree | 0c994cbcfdeb648736922d1cb6e3448b4eac86f6 /libbe/storage/vcs/git.py | |
parent | 9ad4b1cadfd0adf3fd359c274856a196019e913c (diff) | |
download | bugseverywhere-9b42ab6d3e2372c2c0f26a0788f8b84d1d346171.tar.gz |
Implement Arch._vcs_path()
Fixes VersionedStorage_commit_TestCase.test_get_previous_children.
Should have fixed
VersionedStorage_commit_TestCase.test_get_previous_version
too, but 'tla file-find' is buggy:
https://bugs.launchpad.net/ubuntu/+source/tla/+bug/513472
Also:
* sort children in test_get_previous_children, since we shouldn't
require a particular child order
* unescape filenames in Arch._diff()
* remove debugging prints from Arch._parse_diff()
* remove silly blank line in git.py I'd stumbled across ;).
Diffstat (limited to 'libbe/storage/vcs/git.py')
-rw-r--r-- | libbe/storage/vcs/git.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py index e2c1b83..c6638bc 100644 --- a/libbe/storage/vcs/git.py +++ b/libbe/storage/vcs/git.py @@ -118,7 +118,6 @@ class Git(base.VCS): status,output,error = self._u_invoke_client('show', arg) return output - def _vcs_path(self, id, revision): return self._u_find_id(id, revision) |