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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wafadmin/py3kfixes.py')
-rw-r--r--tools/wafadmin/py3kfixes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wafadmin/py3kfixes.py b/tools/wafadmin/py3kfixes.py
index ebfeaae77fe..6aeb26b64ae 100644
--- a/tools/wafadmin/py3kfixes.py
+++ b/tools/wafadmin/py3kfixes.py
@@ -100,7 +100,7 @@ def r7(code):
@subst('Tools/python.py')
def r8(code):
- code = code.replace('p.communicate()[0]', 'p.communicate()[0].decode("utf-8")')
+ code = code.replace('proc.communicate()[0]', 'proc.communicate()[0].decode("utf-8")')
return code
@subst('Tools/glib2.py')