Index: django/contrib/comments/models.py
===================================================================
--- django/contrib/comments/models.py	(wersja 7001)
+++ django/contrib/comments/models.py	(kopia robocza)
@@ -159,7 +159,7 @@
     object_id = models.IntegerField(_('object ID'))
     comment = models.TextField(_('comment'), max_length=3000)
     person_name = models.CharField(_("person's name"), max_length=50)
-    submit_date = models.DateTimeField(_('date/time submitted'), auto_now_add=True)
+    submit_date = models.DateTimeField(_('date/time submitted'), default=datetime.datetime.now)
     is_public = models.BooleanField(_('is public'))
     ip_address = models.IPAddressField(_('ip address'))
     # TODO: Change this to is_removed, like Comment
