asit <[email protected]> wrote: > >According to me, indentation is ok. but the python interpreter gives >an indentation error > >[asit ~/py] $ python search.py > File "search.py", line 7 > findResults = string.split(commandOutput, "\n") > ^ >IndentationError: unindent does not match any outer indentation level
The most likely cause is mixing spaces with tabs. -- Tim Roberts, [email protected] Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list
