Use Python debugger (import pdb) in your code and put pdb.set_trace() at the first break point where you want to begin debugging. Then, run your app using the standard built-in server (manage.py runserver) The break point could be in your own code or in the Django source code (for example, in an admin view)
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

