Chromium Code Reviews| Index: git_cl.py |
| diff --git a/git_cl.py b/git_cl.py |
| index b01b7dbbc22388231d829f68ff72ce2d42ee81dd..211ee6d27745fcf96c741912cff0b304e7e32dfd 100755 |
| --- a/git_cl.py |
| +++ b/git_cl.py |
| @@ -770,7 +770,7 @@ class Settings(object): |
| if self.squash_gerrit_uploads is None: |
| self.squash_gerrit_uploads = ( |
| RunGit(['config', '--bool', 'gerrit.squash-uploads'], |
| - error_ok=True).strip() == 'true') |
| + error_ok=True).strip() != 'false') |
| return self.squash_gerrit_uploads |
| def GetGerritSkipEnsureAuthenticated(self): |