From 94352559a34bb9b8c6cc2b3b4fa1cf1f5cc42c7f Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 9 May 2013 16:50:03 +0000 Subject: [PATCH] save layer in changelog --- pandora/annotation/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/annotation/models.py b/pandora/annotation/models.py index f331d6fb3..cbb9dad26 100644 --- a/pandora/annotation/models.py +++ b/pandora/annotation/models.py @@ -243,7 +243,7 @@ class Annotation(models.Model): def log(self): c = Changelog(type='annotation') - c.value = self.json() + c.value = self.json(layer=True) c.save() def __unicode__(self):