Skip to content

Commit

Permalink
Actually call the function, not the whole module
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Muldowney committed Jun 26, 2012
1 parent d642898 commit 558d011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Expand Up @@ -97,7 +97,7 @@ app.get('/csv', function(req, res) {
if(err) return res.send(err, 500);
if(!entries || entries.length == 0) return res.send("no entries", 500);
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end(pack_csv(entries, req.query));
res.end(pack_csv.csvize(entries, req.query));
});
});

Expand Down

0 comments on commit 558d011

Please sign in to comment.