From 4d7becfa828fcf1318040e1e9185580211b54316 Mon Sep 17 00:00:00 2001 From: David Hatch Date: Wed, 13 Mar 2013 12:13:24 -0700 Subject: [PATCH] for starting with empty zodb must pass this parm --- wikitutorial/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wikitutorial/models.py b/wikitutorial/models.py index c046249..07eb074 100644 --- a/wikitutorial/models.py +++ b/wikitutorial/models.py @@ -24,7 +24,7 @@ class Wiki(PersistentMapping): def appmaker(zodb_root): if not 'app_root' in zodb_root: app_root = Wiki() - frontpage = Page('This is the front page') + frontpage = Page('This is the front page','') app_root['FrontPage'] = frontpage frontpage.__name__ = 'FrontPage' frontpage.__parent__ = app_root