We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7eb8795 + 2cb7d59 commit af115aeCopy full SHA for af115ae
mbed/mbed.py
@@ -1369,7 +1369,7 @@ def formaturl(url, format="default"):
1369
m = re.match(regex_git_url, url)
1370
if m:
1371
if format == "ssh":
1372
- url = 'ssh://%s/%s.git' % (m.group(2), m.group(3))
+ url = 'ssh://git@%s/%s.git' % (m.group(2), m.group(3))
1373
elif format == "http":
1374
url = 'http://%s/%s' % (m.group(2), m.group(3))
1375
elif format == "https":
0 commit comments