Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

settings: use repo.displayname for repo tab text

Changeset 4a8685874b37

Parent 4a3278e3e512

by Steve Borho

Changes to one file · Browse files at 4a8685874b37 Showing diff from parent 4a3278e3e512 Diff from another changeset...

 
539
540
541
542
543
544
545
 
546
547
548
 
539
540
541
 
542
543
 
544
545
546
547
@@ -539,10 +539,9 @@
    if repo:   reporcpath = os.sep.join([repo.root, '.hg', 'hgrc']) - reponame = hglib.tounicode(os.path.basename(repo.root))   self.conftabs.addTab(SettingsForm(rcpath=reporcpath, focus=focus),   qtlib.geticon('settings_repo'), - _('%s repository settings') % reponame) + _('%s repository settings') % repo.displayname)     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)