| Index: trychange.py
|
| diff --git a/trychange.py b/trychange.py
|
| index a40b6e12cf31a6bda5373edd0c57a7993dd2eac6..d76af94cda8669edb40d51d9b19f83148711f23c 100755
|
| --- a/trychange.py
|
| +++ b/trychange.py
|
| @@ -442,7 +442,7 @@ def GuessVCS(options, path):
|
| try:
|
| subprocess2.check_output(
|
| ['git', 'rev-parse', '--is-inside-work-tree'], cwd=real_path,
|
| - stdout=subprocess2.VOID)
|
| + stderr=subprocess2.VOID)
|
| return GIT(options, path)
|
| except subprocess2.CalledProcessError, e:
|
| if e.returncode != errno.ENOENT and e.returncode != 128:
|
|
|