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

stable thgrepo: tortoisehg.fullpath is a bool

This bug was treating any configured value as true

Changeset a356402b9d2e

Parent e4ef090cc6f6

by Steve Borho

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

 
356
357
358
359
 
360
361
362
 
356
357
358
 
359
360
361
362
@@ -356,7 +356,7 @@
  @propertycache   def displayname(self):   'Display name is for window titles and similar' - if self.ui.config('tortoisehg', 'fullpath', False): + if self.ui.configbool('tortoisehg', 'fullpath'):   name = self.root   elif self.ui.config('web', 'name', False):   name = self.ui.config('web', 'name')