Fixed problem with —servewiki option

This commit is contained in:
Jeremy Ruston 2012-01-24 16:25:21 +00:00
parent 7375614849
commit 870529f76b
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ var commandLineSwitches = {
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
var store = new WikiStore();
var recipe = new Recipe(store,lastRecipeFilepath,function() {
var recipe = new Recipe({store: store,filepath: lastRecipeFilepath},function() {
response.end(recipe.cook(), "utf8");
});
}).listen(port);