Fixed an error that crept into log permissions during code restructuring.
This commit is contained in:
parent
27dcff23bb
commit
4e193f133f
@ -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)
|
||||
|
@ -4,5 +4,5 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
version = "2025.06.18"
|
||||
version = "2025.06.20"
|
||||
codeName = "testing"
|
||||
|
Loading…
x
Reference in New Issue
Block a user