Fixed an error that crept into log permissions during code restructuring.

This commit is contained in:
Storm Dragon 2025-06-20 02:19:07 -04:00
parent 27dcff23bb
commit 4e193f133f
2 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,8 @@ class debugManager():
pathlib.Path(directory).mkdir(parents=True, exist_ok=True)
try:
self._file = open(self._fileName,'a')
# Set readable permissions for all users (644)
os.chmod(self._fileName, 0o644)
self._fileOpened = True
except Exception as e:
print(e)

View File

@ -4,5 +4,5 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
version = "2025.06.18"
version = "2025.06.20"
codeName = "testing"