MultiFS implementation of getsyspath raises an exception instead of returning
None when the file is not found and allow_none is set. In particular this
breaks the base copy() function with the target being an non-existing file in a
MultiFS.
To fix this add lines:
if allow_none:
return None
before
raise ResourceNotFoundError(path)
in multifs.py in function getsyspath (line 187).
Original issue reported on code.google.com by aigar...@gmail.com on 10 Nov 2011 at 12:57
Original issue reported on code.google.com by
aigar...@gmail.com
on 10 Nov 2011 at 12:57