From 9b42ab6d3e2372c2c0f26a0788f8b84d1d346171 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 27 Jan 2010 16:50:34 -0500 Subject: 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 ;). --- libbe/storage/vcs/git.py | 1 - 1 file changed, 1 deletion(-) (limited to 'libbe/storage/vcs/git.py') 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) -- cgit