From 77bea516c864aedea24811b0a5e099bdcbbbf929 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sun, 1 Feb 2009 03:57:22 -0800 Subject: urls ommission, forgot return syntax --- bn_django/journal/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bn_django/journal') diff --git a/bn_django/journal/models.py b/bn_django/journal/models.py index 20107c9..a4402b2 100644 --- a/bn_django/journal/models.py +++ b/bn_django/journal/models.py @@ -47,7 +47,7 @@ class MicroEntry(JournalCommon): text_content = models.TextField("text version of content", blank=True,null=True) def __unicode__(self): - self.text_content[:50] + return self.html_content[:50] def get_absolute_url(self): return "/journal/microentries/%s/"%self.id -- cgit v1.2.3