summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-18 15:41:45 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-18 15:41:45 +0000
commit1bb40e75c7051f4e3cad60e7ddb5c683529e88c2 (patch)
tree4eeabc82b9eed205b735f905ceade1e7e7261bf6
parent1f227df92bc492a7b7a071292e332f8e7308bf1f (diff)
Removed legacy TODO comment from django.models.auth
git-svn-id: http://code.djangoproject.com/svn/django/trunk@938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/models/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/models/auth.py b/django/models/auth.py
index 430cad192a..20d846157e 100644
--- a/django/models/auth.py
+++ b/django/models/auth.py
@@ -180,7 +180,7 @@ class Message(meta.Model):
class LogEntry(meta.Model):
action_time = meta.DateTimeField(auto_now=True)
user = meta.ForeignKey(User)
- content_type = meta.ForeignKey(core.ContentType, blank=True, null=True) # TODO: content_type_id name?
+ content_type = meta.ForeignKey(core.ContentType, blank=True, null=True)
object_id = meta.TextField(blank=True, null=True)
object_repr = meta.CharField(maxlength=200)
action_flag = meta.PositiveSmallIntegerField()