fix deletePad script by remembering not to miss a callback..

pull/1561/head
John McLear 2013-02-26 16:32:09 -08:00
parent ad82c8d754
commit 1fd99bfd43
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ async.series([
padManager.removePad(padId, function(err){ padManager.removePad(padId, function(err){
callback(err); callback(err);
}); });
console.error("cool I got here");
callback();
} }
], function (err) ], function (err)
{ {