I am using Paver for the first time and I can't import in my pavement.py a module I created in the same directory. The module was working when imported in a standalone script in the same directory. I guess paver is running from somewhere else, not the same directory.

Any suggestion?

link|improve this question
feedback

1 Answer

After a bit of investigation I found a solution...

import sys
sys.path.append( os.path.abspath('.') )
import mymodule.myscript as myscript
link|improve this answer
I'd say cwd should not be touched, would You consider opening a bug for this? – Almad Dec 15 '10 at 10:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.