Skip to content

Commit

Permalink
Fixed node-jslint to work with Node.js 0.7.x (replaced sys.puts call …
Browse files Browse the repository at this point in the history
…with console.log)
  • Loading branch information
davglass committed May 30, 2012
1 parent 515dd86 commit 1c1b873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion componentbuild/lib/jslint/jslint-node.js
Expand Up @@ -114,7 +114,7 @@ JSLINT = require("./fulljslint").JSLINT;
});
}).listen(PORT, "127.0.0.1");

require("sys").puts("Server started on port " + PORT);
console.log("Server started on port " + PORT);

(function () {
var reap;
Expand Down

0 comments on commit 1c1b873

Please sign in to comment.