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

Unified Diff: gclient_scm.py

Issue 2837001: Make each solution dictionary an object. (Closed)
Patch Set: Include a fix in GetScmName() Created 10 years, 6 months 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 | « gclient.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index b6240a7bad26e0b151622a331ab67090a8d15b0e..a76d2d0c2c882887a1ae32680b4969532a4bb2fb 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -62,7 +62,7 @@ def GetScmName(url):
url.endswith('.git')):
return 'git'
elif (url.startswith('http://') or url.startswith('https://') or
- url.startswith('svn://') or url.startswith('ssh+svn://')):
+ url.startswith('svn://') or url.startswith('svn+ssh://')):
return 'svn'
return None
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698