> Do you mean something like that?
>
>>>> import some_module
> Traceback (most recent call last):
> File "<stdin>", line 1, in ?
> ImportError: No module named some_module
>>>> import sys
>>>> sys.path.append("..")
>>>> import some_module
Rob,
thank you very much,
that's exactly what I want.
(Why is the obvious so often invisible to me ;-)cheers, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list
