Skip to content

Commit 2af9401

Browse files
authored
Fixed small typo in _unix.py (#302)
1 parent f913ce6 commit 2af9401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filelock/_unix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _acquire(self) -> None:
4444
except OSError as exception:
4545
os.close(fd)
4646
if exception.errno == ENOSYS: # NotImplemented error
47-
msg = "FileSystem does not appear to support flock; user SoftFileLock instead"
47+
msg = "FileSystem does not appear to support flock; use SoftFileLock instead"
4848
raise NotImplementedError(msg) from exception
4949
else:
5050
self._context.lock_file_fd = fd

0 commit comments

Comments
 (0)