remove log

This commit is contained in:
Iuri Matias 2015-06-15 06:12:53 -04:00
parent 619a92f71b
commit 27c45ba62d
1 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ var sync = require('sync-me');
var grunt = require('grunt');
py_exec = function(cmd) {
console.log("python: " + cmd);
return sync(python, cmd)[1].trim();
}
@ -50,7 +49,6 @@ TestContractWrapper = (function() {
}
data = py_exec(this.className + "_contract." + method + "(" + arg_list.join(",") + ")");
console.log("res: " + data);
return data;
};