Hello, When executing:
path=os.path.dirname(__file__)+'/log.txt'
log=open(path,"w",encoding='utf-8')
I get:
log=open(path,'w',encoding='utf-8')
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 1203, in __init__
raise IOError('invalid mode: %s' % mode)
IOError: invalid mode: w
I'm not sure why I can't write to the file?