first letter is better to be cap for folders in Windows

This commit is contained in:
Nikos Kouremenos 2005-05-20 18:18:06 +00:00
parent 715d3460f5
commit 8db7ec096a

View file

@ -28,10 +28,10 @@ LOGPATH = os.path.expanduser('~/.gajim/logs')
if os.name == 'nt': if os.name == 'nt':
try: try:
# Documents and Settings\[User Name]\Application Data\Gajim\logs # Documents and Settings\[User Name]\Application Data\Gajim\logs
LOGPATH = os.environ['appdata'] + '/Gajim/logs' LOGPATH = os.environ['appdata'] + '/Gajim/Logs'
except KeyError: except KeyError:
# win9x, ./logs # win9x, ./logs
LOGPATH = 'logs' LOGPATH = 'Logs'
class Logger: class Logger:
def __init__(self): def __init__(self):