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: fix logic precedence in SaveDialog

Changeset 245b73acfc01

Parent bef6f00600f6

by Steve Borho

Changes to one file · Browse files at 245b73acfc01 Showing diff from parent bef6f00600f6 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(origurl) - if user or passwd and scheme in ('http', 'https'): + if (user or passwd) and scheme in ('http', 'https'):   cleanurl = url.removeauth(origurl)   def showurl(showclean):   newurl = showclean and cleanurl or safeurl