First time here? Check out the FAQ!

Revision history  [back]

This issue is probably always due to differences in python paths available for the development and production servers.py

You can try printing "sys.path" at the top of your settings.py and comparing output under the two environments.

Try adding something like:

import sys
sys.stderr.write('\n'.join(sorted(sys.path)))

Then check out console/error log.