On 8/23/05, Peter Jessop <[EMAIL PROTECTED]> wrote: > 'Traceback (most recent call last): > File "C:\Scripts\Script2.py", line 4, in ? > print objChild.Name + '\t' + objChild.Description > TypeError: coercing to Unicode: need string or buffer, NoneType found'
Try: print objChild.Name, '\t', objChild.Description -- Cheers, Simon B, [EMAIL PROTECTED], http://www.brunningonline.net/simon/blog/ _______________________________________________ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32