Mercurial > public > sg101
changeset 282:39664e661c69
Bug fix on r299 (#129).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 04 Oct 2010 00:56:54 +0000 |
parents | d9e01b36b761 |
children | 593fb6dbd449 |
files | gpp/bio/models.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gpp/bio/models.py Sun Oct 03 21:57:00 2010 +0000 +++ b/gpp/bio/models.py Mon Oct 04 00:56:54 2010 +0000 @@ -100,7 +100,7 @@ ordering = ('user__username', ) def save(self, *args, **kwargs): - update_date = datetime.datetime.now() + self.update_date = datetime.datetime.now() sm = SiteMarkup() self.profile_html = sm.convert(self.profile_text) self.signature_html = sm.convert(self.signature)