In <c2a09443-3c74-477b-af9f-a6f3473eb...@googlegroups.com> 
=?ISO-8859-7?B?zd/q7/Igw+rxMzPq?= <nikos.gr...@gmail.com> writes:

> Switching back to:

>               os.system( 'python metrites.py > %s' ) % htmltemp
>               f =3D open( htmltemp )
>               htmldata =3D f.read()=09

> but still donse see what iam doing wrong.....

You have the close-parentheses in the wrong place.  The line should be:

    os.system( 'python metrites.py > %s' % htmltemp )

-- 
John Gordon                   A is for Amy, who fell down the stairs
gor...@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

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

Reply via email to