You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warcprox/writer.py imports fcntl to acquire an exclusive lock on files opened for writing, but this fails on Windows because the fcntl module is only available on Unix-like systems. It should either gracefully degrade to not use file locking if the module is not available, or use a portable library like portalocker.
The text was updated successfully, but these errors were encountered:
warcprox/writer.py
importsfcntl
to acquire an exclusive lock on files opened for writing, but this fails on Windows because thefcntl
module is only available on Unix-like systems. It should either gracefully degrade to not use file locking if the module is not available, or use a portable library likeportalocker
.The text was updated successfully, but these errors were encountered: