Hello,
I'm both new to Python and to Django.

I'm using Django from subversion (after magic removal has been merged in 
trunk).

When doing python manage.py install Manager I get the following error:

NameError: name 'Reference_Data_Value' is not defined here is my code:

class Reference_Data_Value(ModelBase):
    class Admin:
        pass
    short_name = models.CharField(maxlength=10)
    description = models.CharField(maxlength=512)
    def __str__(self):
        return self.short_name
    is_default = models.BooleanField()
    display_order = models.IntegerField()
    parent = models.ForeignKey(Reference_Data_Value)
    domain = models.ForeignKey(Reference_Data_Domain)

Is there a work around ?

Regards,
F.Roland.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to