| Index: gcl.py
|
| diff --git a/gcl.py b/gcl.py
|
| index 0230c6222745824715add32a515dd3f9b827ab6d..bb623436d916e9862993692b9253554d9f71114f 100755
|
| --- a/gcl.py
|
| +++ b/gcl.py
|
| @@ -150,8 +150,8 @@ def GetCachedFile(filename, max_age=60*60*24*3, use_root=False):
|
| # The fix doesn't work if the user upgraded to svn 1.6.x. Bleh.
|
| # I don't have time to fix their broken stuff.
|
| args.append('--non-interactive')
|
| - SVN.RunAndFilterOutput(args, cwd='.',
|
| - filter_fn=content_array.append)
|
| + gclient_utils.CheckCallAndFilter(
|
| + args, cwd='.', filter_fn=content_array.append)
|
| # Exit the loop if the file was found. Override content.
|
| content = '\n'.join(content_array)
|
| break
|
|
|