From 83a8bf2a9ad1c92af65abd485aa0cc589d897082 Mon Sep 17 00:00:00 2001 From: Farrin Reid Date: Sat, 23 Jun 2012 01:37:01 -0800 Subject: [PATCH] [fix] Changed require('sys') to require('util') for compatibility with node v0.8 --- node_modules/couchapp/main.js | 2 +- node_modules/couchapp/node_modules/watch/main.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node_modules/couchapp/main.js b/node_modules/couchapp/main.js index 112c2b1..5fbbea4 100644 --- a/node_modules/couchapp/main.js +++ b/node_modules/couchapp/main.js @@ -1,5 +1,5 @@ var path = require('path') - , sys = require('sys') + , util = require('util') , fs = require('fs') , watch = require('watch') , request = require('request') diff --git a/node_modules/couchapp/node_modules/watch/main.js b/node_modules/couchapp/node_modules/watch/main.js index 24355dd..443ee83 100644 --- a/node_modules/couchapp/node_modules/watch/main.js +++ b/node_modules/couchapp/node_modules/watch/main.js @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -var sys = require('sys') +var util = require('util') , fs = require('fs') , path = require('path') , events = require('events')