Commit dc39faf6 by rfkelly0

docstring improvement

parent 9a9765e5
...@@ -759,7 +759,7 @@ class SubFS(FS): ...@@ -759,7 +759,7 @@ class SubFS(FS):
def flags_to_mode(flags): def flags_to_mode(flags):
"""Convert an os.O_* bitmask into an FS mode string.""" """Convert an os.O_* flag bitmask into an FS mode string."""
if flags & os.O_EXCL: if flags & os.O_EXCL:
raise UnsupportedError("open",msg="O_EXCL is not supported") raise UnsupportedError("open",msg="O_EXCL is not supported")
if flags & os.O_WRONLY: if flags & os.O_WRONLY:
......
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