Hi, I'm trying to create a file and write to it, but the file is not created. Here's my code:
f=open('test.txt','w') f.write("this is a test") f.close()
This code works well outside openerp, but it's not working when it's integrated into a module, the file is not created. Any help would be appreciated.