We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f913ce6 commit 2af9401Copy full SHA for 2af9401
src/filelock/_unix.py
@@ -44,7 +44,7 @@ def _acquire(self) -> None:
44
except OSError as exception:
45
os.close(fd)
46
if exception.errno == ENOSYS: # NotImplemented error
47
- msg = "FileSystem does not appear to support flock; user SoftFileLock instead"
+ msg = "FileSystem does not appear to support flock; use SoftFileLock instead"
48
raise NotImplementedError(msg) from exception
49
else:
50
self._context.lock_file_fd = fd
0 commit comments