On Mon, 30 Jul 2007 07:36:00 -0700, [EMAIL PROTECTED] wrote:
>Hi,
>
> [snip]
>    f=open(fileBeginning+".tmp", 'w')
>    f.write("Hello")
>    f.close
>

You forgot to call close.  Try this final line, instead:

    f.close()

Jean-Paul
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to