Skip to content
Snippets Groups Projects
Commit e0c3e309 authored by nkour's avatar nkour
Browse files

remove a fixme

parent cb88b23b
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,8 @@ class Logger:
path_to_file = os.path.join(LOGPATH, f)
if os.path.isdir(path_to_file):
return
fil = open(path_to_file, 'a') #FIXME this does it rw-r-r by default
# this does it rw-r-r by default but is in a dir with 700 so it's ok
fil = open(path_to_file, 'a')
fil.write('%s:%s:%s' % (tim, jid, show))
if msg:
fil.write(':' + msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment