Commit da93b4d9 by rfkelly0

LimitSizeFS: remove exceptions I was using for debugging

parent 99473158
...@@ -15,7 +15,7 @@ implementations of this interface such as: ...@@ -15,7 +15,7 @@ implementations of this interface such as:
""" """
__version__ = "0.4.0b2" __version__ = "0.4.0b3"
__author__ = "Will McGugan (will@willmcgugan.com)" __author__ = "Will McGugan (will@willmcgugan.com)"
# 'base' imports * from 'path' and 'errors', so their # 'base' imports * from 'path' and 'errors', so their
......
...@@ -151,7 +151,6 @@ class LimitSizeFS(WrapFS): ...@@ -151,7 +151,6 @@ class LimitSizeFS(WrapFS):
return return
except FSError: except FSError:
pass pass
raise OperationFailedError
FS.move(self, src, dst, **kwds) FS.move(self, src, dst, **kwds)
def movedir(self, src, dst, **kwds): def movedir(self, src, dst, **kwds):
...@@ -163,7 +162,6 @@ class LimitSizeFS(WrapFS): ...@@ -163,7 +162,6 @@ class LimitSizeFS(WrapFS):
return return
except FSError: except FSError:
pass pass
raise OperationFailedError
FS.movedir(self,src,dst,**kwds) FS.movedir(self,src,dst,**kwds)
def rename(self, src, dst): def rename(self, src, dst):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment