Chromium Code Reviews| Index: gclient_scm.py |
| diff --git a/gclient_scm.py b/gclient_scm.py |
| index 01dfd54675b32151d38eb6fe27629650397a32bd..f30c30db1a32b8fa4dc4d3a93d8437fa441ec65a 100644 |
| --- a/gclient_scm.py |
| +++ b/gclient_scm.py |
| @@ -121,7 +121,10 @@ class SCMWrapper(object): |
| This is the abstraction layer to bind to different SCM. |
| """ |
| nag_timer = 30 |
| - nag_max = 6 |
| + if sys.platform in ('win32', 'cygwin'): |
| + nag_max = 50 |
| + else: |
| + nag_max = 6 |
| def __init__(self, url=None, root_dir=None, relpath=None): |
| self.url = url |