aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/journal
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@animus.robocracy.org>2009-02-01 03:57:22 -0800
committerBryan Newbold <bnewbold@animus.robocracy.org>2009-02-01 03:57:22 -0800
commit77bea516c864aedea24811b0a5e099bdcbbbf929 (patch)
tree793ec93fb54343c1a17b32b3ac34f1f42715ee2b /bn_django/journal
parenteba16a3e48c2d985f36c0bf4b67141cf4f662b83 (diff)
downloadbnewnet-77bea516c864aedea24811b0a5e099bdcbbbf929.tar.gz
bnewnet-77bea516c864aedea24811b0a5e099bdcbbbf929.zip
urls ommission, forgot return syntax
Diffstat (limited to 'bn_django/journal')
-rw-r--r--bn_django/journal/models.py2
1 files changed, 1 insertions, 1 deletions
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