python-shell
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -216,5 +216,3 @@ "use strict"; | ||
}).end(function (err) { | ||
if (err) | ||
return callback(err); | ||
return callback(null, output.length ? output : null); | ||
return callback(err ? err : null, output.length ? output : null); | ||
}); | ||
@@ -221,0 +219,0 @@ } |
{ | ||
"name": "python-shell", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
45241
531