Changes between Version 9 and Version 10 of DocPtDatabaseAPI


Ignore:
Timestamp:
Sep 18, 2007, 2:51:53 PM (17 years ago)
Author:
maia
Comment:

str -> unicode

Legend:

Unmodified
Added
Removed
Modified
  • DocPtDatabaseAPI

    v9 v10  
    5959        tagline = models.TextField()
    6060
    61         def __str__(self):
     61        def __unicode__(self):
    6262            return self.name
    6363
     
    6666        email = models.URLField()
    6767
    68         def __str__(self):
     68        def __unicode__(self):
    6969            return self.name
    7070
     
    7676        authors = models.ManyToManyField(Author)
    7777
    78         [imperfeita] def __str__(self):
     78        [imperfeita] def __unicode__(self):
    7979            return self.name
    8080
Back to Top