X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8559c95597de98e8f6c580e97224ed3ecc9dc5c0..c043ed65fc53c1779de60ff094e4d752e35fd1c4:/chunks/templatetags/chunks.py diff --git a/chunks/templatetags/chunks.py b/chunks/templatetags/chunks.py index fe8efdefe..f79d495ec 100644 --- a/chunks/templatetags/chunks.py +++ b/chunks/templatetags/chunks.py @@ -39,7 +39,7 @@ class ChunkNode(template.Node): except Chunk.DoesNotExist: n = Chunk(key=self.key) n.save() - return 'SOME TEXT PLEASE' + return '' return content register.tag('chunk', do_get_chunk)