#5245: manager runserver don't reload after fixing error
-----------------------------------+----------------------------------------
   Reporter:  [EMAIL PROTECTED]  |                Owner:  adrian                
   
     Status:  reopened             |            Component:  django-admin.py 
runserver
    Version:  SVN                  |           Resolution:                      
     
   Keywords:  runserver reload     |                Stage:  Unreviewed          
     
  Has_patch:  0                    |           Needs_docs:  0                   
     
Needs_tests:  0                    |   Needs_better_patch:  0                   
     
-----------------------------------+----------------------------------------
Comment (by Benoit):

 models:
 {{{
 from django.db import models
 from django.contrib.auth.models import User
 
 from tagging.models import Tag
 
 
 class Subscription(models.Model):
     user = models.ForeignKey(User)
     tag = models.ForeignKey(Tag)ru
 
     def __unicode__(self):
         return "%s - %s" % (self.user, self.tag)
 
 }}}
 view :
 {{{
 
 from models import Subscription
 }}}
 
 
 error that created previous traceback : the ru after field description. It
 was detected by runserver and  then runserver hanged. This error appear
 from time to time. Project has 2047 files.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/5245#comment:13>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" 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-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to