Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

gdialog: use web.name for a repo title, if configured

Changeset f0224df47753

Parent 32200940a022

by Steve Borho

Changes to one file · Browse files at f0224df47753 Showing diff from parent 32200940a022 Diff from another changeset...

 
339
340
341
 
 
342
343
344
 
339
340
341
342
343
344
345
346
@@ -339,6 +339,8 @@
  def get_reponame(self):   if self.repo.ui.config('tortoisehg', 'fullpath', False):   name = self.repo.root + elif self.repo.ui.config('web', 'name', False): + name = self.repo.ui.config('web', 'name')   else:   name = os.path.basename(self.repo.root)   return hglib.toutf(name)