diff options
author | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-10-25 18:06:44 -0700 |
---|---|---|
committer | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-10-25 18:06:44 -0700 |
commit | c2102e1b36a24c86447159302419328d9529f013 (patch) | |
tree | 1fff52bd34beeaa66b13fbccd6beda183b641cab /libbe | |
parent | ea9867f51a4e1bab0455d5fe974ed731ddfee26c (diff) | |
download | bugseverywhere-c2102e1b36a24c86447159302419328d9529f013.tar.gz |
remove unused exception
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/vcs/base.py | 5 |
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. |