Skip to content

Commit 07bc75b

Browse files
committed
changing permissions
1 parent 00738a8 commit 07bc75b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/blueapi/service/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def can_access_cache(self) -> bool:
7272
assert self._token_path
7373
try:
7474
Path(self._token_path.parent).mkdir(parents=True, exist_ok=True)
75-
os.chmod(self._token_path.parent, 0o600)
75+
os.chmod(self._token_path.parent, 0o777)
7676
self._token_path.write_text("")
7777
except IsADirectoryError:
7878
print("Invalid path: a directory path was provided instead of a file path")

0 commit comments

Comments
 (0)