diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-22 14:13:08 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-22 14:13:08 -0500 |
commit | 355219426b8577123ea3db2d6b7247ec4fc085ea (patch) | |
tree | bda8375459a4e8967a95a382077942f9233d1c28 | |
parent | e2507e15c2a7b46bfd2bd76056368e4a3398472f (diff) | |
download | bugseverywhere-355219426b8577123ea3db2d6b7247ec4fc085ea.tar.gz |
We don't need VCS._vcs_exists yet, with exists only used in _add
-rw-r--r-- | libbe/storage/vcs/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 0ef35ad..7d4383f 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -508,7 +508,7 @@ os.listdir(self.get_path("bugs")): """ Does the path exist in a given revision? (True/False) """ - pass + raise NotImplementedError def _vcs_remove(self, path): """ |