Author: ianb
Date: 2004-04-13 00:46:12 -0600 (Tue, 13 Apr 2004)
New Revision: 45
Modified:
Wiki/lib/wiki.py
Log:
Gave warning message if Cheetah is not installed
Modified: Wiki/lib/wiki.py
===================================================================
--- Wiki/lib/wiki.py 2004-04-13 06:45:17 UTC (rev 44)
+++ Wiki/lib/wiki.py 2004-04-13 06:46:12 UTC (rev 45)
@@ -184,6 +184,7 @@
def publish(self, page):
if not self.config.staticPublish:
return
+ assert pooledtemplate, "You must install Cheetah (cheetahtemplate.org) to use static publishing"
if self.template is None:
if not os.path.exists(self.config.staticTemplate):
filename = os.path.join(os.path.dirname(__file__), 'default_static.tmpl')
|