| Index: subprocess2.py
|
| diff --git a/subprocess2.py b/subprocess2.py
|
| index 716ef20faed48ffc9866e5da77a5207927bf857d..3beeaeb58ee0243218321136e1a8d95b21a1ceb6 100644
|
| --- a/subprocess2.py
|
| +++ b/subprocess2.py
|
| @@ -510,5 +510,5 @@ def check_output(args, **kwargs):
|
| """
|
| kwargs.setdefault('stdin', VOID)
|
| if 'stdout' in kwargs:
|
| - raise ValueError('stdout argument not allowed, it will be overridden.')
|
| + raise ValueError('stdout argument not allowed, it would be overridden.')
|
| return check_call_out(args, stdout=PIPE, **kwargs)[0]
|
|
|