if s.find('LANDesk') <0:
is True for a line which doesn't contain "LANDesk"; if you want the
opposite, try
 if s.find('LANDesk') >-1:

Or more pythonically, just use

  if 'LANDesk' in s:

-tkc



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

Reply via email to