Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4128798
By: fabioz

In your example:

from main.lib.base import *

class FormsController(BaseController):
   def index(self):
       return Response('')

where is that 'main' module that you use as the root for your code?

Also, it might be worth checking in some place what's the pythonpath that is
used at runtime for a pylons project...

E.g.:

class FormsController(BaseController):
   def index(self):
       for p in sys.path: print p #get the pythonpath
       return Response('')

It would be nice if you could post those results...

Cheers,

Fabio


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Pydev-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to