On Wednesday 13 September 2006 20:19, Rainer Dorsch wrote: > [EMAIL PROTECTED]:~> python -V > Python 2.2.1 > [EMAIL PROTECTED]:~> > > Does not look bad (?)
Nope it is fine. :-) I found the reference to this in http://docs.python.org/lib/typesseq.html (1) When s is a string or Unicode string object the in and not in operations act like a substring test. In Python versions before 2.3, x had to be a string of length 1. In Python 2.3 and beyond, x may be a string of any length. Could you replace the faulty line, line 635, in checkTeXAllowSpaces if 'working' in latex_out: with if latex_out.find('working') != -1: beware that indentations is significant in python, i.e., keep the same number of spaces in the left part of the expression. > Thanks, > Rainer -- José Abílio