Chromium Code Reviews| Index: scm.py |
| diff --git a/scm.py b/scm.py |
| index 97df0dce46d4007a496b6542481845de4e49b535..99dccf97496c8334cf8f8ad5a588721093e7572c 100644 |
| --- a/scm.py |
| +++ b/scm.py |
| @@ -441,7 +441,8 @@ class SVN(object): |
| if sys.platform.startswith('win'): |
| if not 'APPDATA' in os.environ: |
| return None |
| - auth_dir = os.path.join(os.environ['APPDATA'], 'auth', 'svn.simple') |
| + auth_dir = os.path.join(os.environ['APPDATA'], 'Subversion', 'auth', |
| + 'svn.simple') |
| else: |
| if not 'HOME' in os.environ: |
| return None |