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

first letter is better to be cap for folders in Windows

parent 715d3460
No related branches found
No related tags found
No related merge requests found
......@@ -28,10 +28,10 @@ LOGPATH = os.path.expanduser('~/.gajim/logs')
if os.name == 'nt':
try:
# Documents and Settings\[User Name]\Application Data\Gajim\logs
LOGPATH = os.environ['appdata'] + '/Gajim/logs'
LOGPATH = os.environ['appdata'] + '/Gajim/Logs'
except KeyError:
# win9x, ./logs
LOGPATH = 'logs'
LOGPATH = 'Logs'
class Logger:
def __init__(self):
......
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