Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable sync: do not strip user data from ssh URLs

Changeset cd119e1f59cb

Parent 3dad7bf7991d

by Steve Borho

Changes to one file · Browse files at cd119e1f59cb Showing diff from parent 3dad7bf7991d Diff from another changeset...

 
930
931
932
933
 
934
935
936
 
930
931
932
 
933
934
935
936
@@ -930,7 +930,7 @@
  self.layout().addRow(_('URL'), self.urllabel)     user, host, port, folder, passwd, scheme = parseurl(url) - if user or passwd: + if user or passwd and scheme in ('http', 'https'):   cleanurl = '://'.join([scheme, host])   if port:   cleanurl = ':'.join([cleanurl, port])