Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-gyp/gyp/gyp_main.py')
-rwxr-xr-xnode_modules/node-gyp/gyp/gyp_main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/node-gyp/gyp/gyp_main.py b/node_modules/node-gyp/gyp/gyp_main.py
index aece53c8e..f738e8009 100755
--- a/node_modules/node-gyp/gyp/gyp_main.py
+++ b/node_modules/node-gyp/gyp/gyp_main.py
@@ -31,7 +31,7 @@ def UnixifyPath(path):
out = subprocess.Popen(["cygpath", "-u", path],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
- stdout, stderr = out.communicate()
+ stdout, _ = out.communicate()
if PY3:
stdout = stdout.decode("utf-8")
return str(stdout)