Skip to content

Commit

Permalink
require 'util' instead of 'sys' in lessc and less-benchmark.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcass committed Nov 14, 2011
1 parent 2af0f62 commit 7bb0a2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/less-benchmark.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var path = require('path'),
fs = require('fs'),
sys = require('sys');
sys = require('util');

var less = require('../lib/less');
var file = path.join(__dirname, 'benchmark.less');
Expand Down
2 changes: 1 addition & 1 deletion bin/lessc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var path = require('path'),
fs = require('fs'),
sys = require('sys');
sys = require('util');

var less = require('../lib/less');
var args = process.argv.slice(1);
Expand Down

0 comments on commit 7bb0a2a

Please sign in to comment.