Skip to content

Commit ede5fc8

Browse files
committed
Issue #198/#249 log.info instead of warn about config file permissions on Windows
1 parent f1382ff commit ede5fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openeo/rest/auth/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def assert_private_file(path: Path):
3131
p=path, a=mode & (stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO), e=_PRIVATE_PERMS
3232
)
3333
if platform.system() == 'Windows':
34-
warnings.warn(message)
34+
log.info(message)
3535
else:
3636
raise PermissionError(message)
3737

0 commit comments

Comments
 (0)