I did the same, The function type is < NoneType> and the description type is <Unicode> so how can i print a part of this 2 output.
These values are returned by database. Thanks Retheesh Laszlo Nagy wrote: > [EMAIL PROTECTED] írta: > > So wat should I do ?? > > > You should do this: > > print type(Function),type(Description) > raise SystemExit > > Instead of this: > > print template % (ID, IID, Function[:10], Description[:10],ErrorNumber, > StatusCD) > > Then probably you will see: > > <type 'int'> <type 'int'> > > instead of > > <type 'str'> <type 'str'> > > > or something similar. (Of course in your case, it can be 'float instead of > list' or 'dictionary instead of tuple' etc.) > > Then you should debug your program and find out why the 'Function' and > 'Description' objects are not string but int. > > > Laszlo -- http://mail.python.org/mailman/listinfo/python-list