logfile=file(r'test.txt','a+')
logfile.write('datetime')
logfile.flush()
test=logfile.readlines()
print testI added logfile.flush(), the 'datetime' was written in the file correctly but I couldn't get any result... Crazy! Garry -- http://mail.python.org/mailman/listinfo/python-list
