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

stable sync: fix encoding errors in refreshStatusTips()

Changeset e668510da7db

Parent c531f9f6dee3

by Steve Borho

Changes to one file · Browse files at e668510da7db Showing diff from parent c531f9f6dee3 Diff from another changeset...

 
263
264
265
266
267
268
269
 
 
 
 
 
270
271
272
 
263
264
265
 
 
 
 
266
267
268
269
270
271
272
273
@@ -263,10 +263,11 @@
    def refreshStatusTips(self):   url = self.currentUrl(True) - self.incomingAction.setStatusTip(_('Preview incoming changesets from %s') % url) - self.pullAction.setStatusTip(_('Pull incoming changesets from %s') % url) - self.outgoingAction.setStatusTip(_('Filter outgoing changesets to %s') % url) - self.pushAction.setStatusTip(_('Push outgoing changesets to %s') % url) + urlu = hglib.tounicode(url) + self.incomingAction.setStatusTip(_('Preview incoming changesets from %s') % urlu) + self.pullAction.setStatusTip(_('Pull incoming changesets from %s') % urlu) + self.outgoingAction.setStatusTip(_('Filter outgoing changesets to %s') % urlu) + self.pushAction.setStatusTip(_('Push outgoing changesets to %s') % urlu)     def loadTargets(self, ctx):   self.targetcombo.clear()