| Index: gclient_utils.py
|
| diff --git a/gclient_utils.py b/gclient_utils.py
|
| index 6154974823e4d91808ae8a14750a78bef48d9b54..9953223898e03cbff726d2984a03bdf96e583b31 100644
|
| --- a/gclient_utils.py
|
| +++ b/gclient_utils.py
|
| @@ -32,7 +32,7 @@ class Error(Exception):
|
| class CheckCallError(OSError, Error):
|
| """CheckCall() returned non-0."""
|
| def __init__(self, command, cwd, returncode, stdout, stderr=None):
|
| - OSError.__init__(self, command, cwd, returncode, stdout, stderr)
|
| + OSError.__init__(self, command, cwd, returncode)
|
| Error.__init__(self, command)
|
| self.command = command
|
| self.cwd = cwd
|
|
|