From 6d6222bc1809567cf537d653857f1086a1205f02 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 6 Feb 2016 13:03:43 +0100 Subject: [PATCH] Unnecessary variable duplication --- waflib/Context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waflib/Context.py b/waflib/Context.py index 8bb00e59..8d5bd2e2 100644 --- a/waflib/Context.py +++ b/waflib/Context.py @@ -352,7 +352,7 @@ class Context(ctx): if 'input' in kw: if kw['input']: wargs['input'] = kw['input'] - kw['stdin'] = Utils.subprocess.PIPE + kw['stdin'] = subprocess.PIPE del kw['input'] if 'cwd' in kw: @@ -436,7 +436,7 @@ class Context(ctx): if 'input' in kw: if kw['input']: wargs['input'] = kw['input'] - kw['stdin'] = Utils.subprocess.PIPE + kw['stdin'] = subprocess.PIPE del kw['input'] if 'cwd' in kw: