cosmetic
[unfold.git] / plugins / raw.py
index 0a0be1d..6da0c90 100644 (file)
@@ -4,5 +4,9 @@ from engine.plugin import Plugin
 
 class Raw (Plugin):
 
+    def __init__ (self, html, **kwds):
+        Plugin.__init__ (self, **kwds)
+        self.html=html
+
     def render_content (self, request):
-        return self.get_setting('html')
+        return self.html