From f872221c49c092c323ed3ebaf02b6f3c467f256b Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Thu, 28 Jan 2021 22:22:25 +0100 Subject: [PATCH] filesystem permission checks now issue warnings instead of errors, improves NFS compatibility --- src/paperless/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless/checks.py b/src/paperless/checks.py index 1329ad679..df4d45e38 100644 --- a/src/paperless/checks.py +++ b/src/paperless/checks.py @@ -22,7 +22,7 @@ def path_check(var, directory): exists_hint.format(directory) )) elif not os.access(directory, os.W_OK | os.X_OK): - messages.append(Error( + messages.append(Warning( writeable_message.format(var), writeable_hint.format(directory) ))