Changes between Version 20 and Version 21 of QuerysetRefactorBranch


Ignore:
Timestamp:
Apr 28, 2008, 12:36:46 AM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

Typo fix.

Legend:

Unmodified
Added
Removed
Modified
  • QuerysetRefactorBranch

    v20 v21  
    5151#!python
    5252class Tag(models.Model):
    53    parent = models.ForeignKey(self, blank=True, null=True)
     53   parent = models.ForeignKey('self', blank=True, null=True)
    5454
    5555   class Meta:
Back to Top