2009/7/14 Lily Gao <lily....@autodesk.com>:
> Hi, All
>
> I am calling a python program in perl and use redirection,
>
> Like :
>
> `python x.py > 1.log 2>&1`

Try tihs instead:
    python x.py 2>&1 > 1.log

-- 
David
blog: http://www.traceback.org
twitter: http://twitter.com/dstanek
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to