summaryrefslogtreecommitdiff
path: root/fs/contrib
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-26 00:34:13 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-26 00:34:13 +0000
commit99dd8521784664e1832a700b5642ce5f85a1a236 (patch)
treef0f8f1e42cf5d196366aad323c0d62acd359df68 /fs/contrib
parentb44452ac6cb026807e62c0cf650e4ca54b79fa0d (diff)
downloadpyfilesystem-git-99dd8521784664e1832a700b5642ce5f85a1a236.tar.gz
doc fixes
Diffstat (limited to 'fs/contrib')
-rw-r--r--fs/contrib/tahoefs/__init__.py7
-rw-r--r--fs/contrib/tahoefs/connection.py2
2 files changed, 5 insertions, 4 deletions
diff --git a/fs/contrib/tahoefs/__init__.py b/fs/contrib/tahoefs/__init__.py
index 37e9481..f6850c1 100644
--- a/fs/contrib/tahoefs/__init__.py
+++ b/fs/contrib/tahoefs/__init__.py
@@ -83,9 +83,10 @@ def _fixpath(path):
class _TahoeFS(FS):
"""FS providing raw access to a Tahoe Filesystem.
- This class implements all the details of interacting with a Tahoe-backed filesystem, but you
- probably don't want to use it in practise. Use the TahoeFS class instead, which has some internal
- caching to improve performance.
+ This class implements all the details of interacting with a Tahoe-backed
+ filesystem, but you probably don't want to use it in practice. Use the
+ TahoeFS class instead, which has some internal caching to improve
+ performance.
"""
_meta = { 'virtual' : False,
diff --git a/fs/contrib/tahoefs/connection.py b/fs/contrib/tahoefs/connection.py
index 2073122..e3df28a 100644
--- a/fs/contrib/tahoefs/connection.py
+++ b/fs/contrib/tahoefs/connection.py
@@ -72,7 +72,7 @@ class Connection:
raise errors.StorageSpaceError(e.fp.read())
elif code in (400, 404, 410):
# Standard not found
- raise errors.ResourceNotFoundError(e.fp.read())
+ raise errors.ResourceNotFoundError(e.fp.read())
raise errors.ResourceInvalidError(e.fp.read())
def post(self, path, data={}, params={}):