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

settings: show basename in tab for repo

instead of the full path

Changeset 74acceb9d9e7

Parent ff6e7a012b30

by Adrian Buehlmann

Changes to one file · Browse files at 74acceb9d9e7 Showing diff from parent ff6e7a012b30 Diff from another changeset...

 
457
458
459
 
460
461
462
 
463
464
465
 
457
458
459
460
461
462
 
463
464
465
466
@@ -457,9 +457,10 @@
  _('User global settings'))   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, readonly=self.readonly), - _('%s repository settings') % hglib.tounicode(name)) + _('%s repository settings') % reponame)     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)