Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(837)

Unified Diff: scm.py

Issue 430004: Fix path on Windows. (Closed)
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698