Skip to content

Commit a13ef5d

Browse files
committed
Add version number to Django problem so it's easier to understand what's going on in the future
- Legacy-Id: 3175
1 parent 0e829f9 commit a13ef5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

redesign/doc/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class Meta:
124124

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

0 commit comments

Comments
 (0)