aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-13 23:25:07 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-13 23:25:07 -0500
commit7addcc4aff8d391765b22d8f095afba739489511 (patch)
tree9386f09400e2d840990ca276c28b868a64f31022 /libbe/storage/vcs
parentb1ddf38a32c49f7e90168014c9ec1efce86cf1fb (diff)
downloadbugseverywhere-7addcc4aff8d391765b22d8f095afba739489511.tar.gz
The VCS storage backends are all mostly working now.
Running python test.py libbe.storage.vcs yields some EmptyCommit problems, an issue with bzr revision ids, and some trouble with git's remove(), but nothing too critical. On the bright side, now ./be list Detects and uses the bzr backend :). Onwards to moving over the remaining commands...
Diffstat (limited to 'libbe/storage/vcs')
-rw-r--r--libbe/storage/vcs/base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py
index 69e412e..a765a80 100644
--- a/libbe/storage/vcs/base.py
+++ b/libbe/storage/vcs/base.py
@@ -66,7 +66,6 @@ def _get_matching_vcs(matchfn):
vcs = module.new()
if matchfn(vcs) == True:
return vcs
- vcs.cleanup()
return VCS()
def vcs_by_name(vcs_name):