2009/11/17 Joshua Kramer <joskr...@gmail.com>: > Thanks a ton Mark! I wish I would have done this much earlier. > > Some of my models had GeoDjango models in them. For these, I need to have > ctypes and geos installed - neither of which are installed. When I > commented out the bits requiring GD, presto - everything is installed > properly. Yep, you can also try writing the tracebacks in your code while using development server (http://docs.python.org/library/traceback.html)
import traceback class Foo(): try: ..... except: print traceback.format_exc( ); -- Regards, Ishwor Gurung -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=.