aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Fernandez <matthew.fernandez@gmail.com>2017-10-25 18:06:44 -0700
committerMatthew Fernandez <matthew.fernandez@gmail.com>2017-10-25 18:06:44 -0700
commitc2102e1b36a24c86447159302419328d9529f013 (patch)
tree1fff52bd34beeaa66b13fbccd6beda183b641cab
parentea9867f51a4e1bab0455d5fe974ed731ddfee26c (diff)
downloadbugseverywhere-c2102e1b36a24c86447159302419328d9529f013.tar.gz
remove unused exception
-rw-r--r--libbe/storage/vcs/base.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py
index b4df3f6..687575f 100644
--- a/libbe/storage/vcs/base.py
+++ b/libbe/storage/vcs/base.py
@@ -129,11 +129,6 @@ class SpacerCollision (InvalidPath):
InvalidPath.__init__(self, path, root=None, msg=msg)
self.spacer = spacer
-class NoSuchFile (InvalidID):
- def __init__(self, pathname, root='.'):
- path = os.path.abspath(os.path.join(root, pathname))
- InvalidID.__init__(self, 'No such file: %s' % path)
-
class CachedPathID (object):
"""Cache Storage ID <-> path policy.