Commit 835de620 by willmcgugan

Fixed wrong exception in httpfs

parent c8411782
...@@ -7,7 +7,7 @@ fs.httpfs ...@@ -7,7 +7,7 @@ fs.httpfs
from fs.base import FS from fs.base import FS
from fs.path import normpath from fs.path import normpath
from fs.errors import ResourceNotFoundError from fs.errors import ResourceNotFoundError, UnsupportedError
from urlparse import urlparse from urlparse import urlparse
from urllib2 import urlopen, URLError from urllib2 import urlopen, URLError
...@@ -27,7 +27,7 @@ class HTTPFS(FS): ...@@ -27,7 +27,7 @@ class HTTPFS(FS):
def open(self, path, mode="r"): def open(self, path, mode="r"):
if '+' in mode or 'w' in mode or 'a' in mode: if '+' in mode or 'w' in mode or 'a' in mode:
raise UnsuportedError('write access') raise UnsupportedError('write')
url = self._make_url(path) url = self._make_url(path)
try: try:
......
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