Add version number to Django problem so it's easier to understand what's going on in the future

- Legacy-Id: 3175
This commit is contained in:
Ole Laursen 2011-06-27 13:57:49 +00:00
parent 0e829f975d
commit a13ef5d3c4

View file

@ -124,7 +124,7 @@ class DocHistoryAuthor(models.Model):
class DocHistory(DocumentInfo):
doc = models.ForeignKey(Document) # ID of the Document this relates to
# Django won't let us define these in the base class, so we have
# Django 1.2 won't let us define these in the base class, so we have
# to repeat them
related = models.ManyToManyField('DocAlias', through=RelatedDocHistory, blank=True)
authors = models.ManyToManyField(Email, through=DocHistoryAuthor, blank=True)