Commit 99dd8521 by rfkelly0

doc fixes

parent b44452ac
...@@ -83,9 +83,10 @@ def _fixpath(path): ...@@ -83,9 +83,10 @@ def _fixpath(path):
class _TahoeFS(FS): class _TahoeFS(FS):
"""FS providing raw access to a Tahoe Filesystem. """FS providing raw access to a Tahoe Filesystem.
This class implements all the details of interacting with a Tahoe-backed filesystem, but you This class implements all the details of interacting with a Tahoe-backed
probably don't want to use it in practise. Use the TahoeFS class instead, which has some internal filesystem, but you probably don't want to use it in practice. Use the
caching to improve performance. TahoeFS class instead, which has some internal caching to improve
performance.
""" """
_meta = { 'virtual' : False, _meta = { 'virtual' : False,
......
...@@ -72,7 +72,7 @@ class Connection: ...@@ -72,7 +72,7 @@ class Connection:
raise errors.StorageSpaceError(e.fp.read()) raise errors.StorageSpaceError(e.fp.read())
elif code in (400, 404, 410): elif code in (400, 404, 410):
# Standard not found # Standard not found
raise errors.ResourceNotFoundError(e.fp.read()) raise errors.ResourceNotFoundError(e.fp.read())
raise errors.ResourceInvalidError(e.fp.read()) raise errors.ResourceInvalidError(e.fp.read())
def post(self, path, data={}, params={}): def post(self, path, data={}, params={}):
......
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