In <[email protected]> 
=?ISO-8859-7?B?zd/q7/Igw+rxMzPq?= <[email protected]> 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
[email protected]              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

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

Reply via email to