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 update: include bookmarks in update dialog completion list (refs #177)

Changeset 6bdb7ec357aa

Parent bf9915467736

by Steve Borho

Changes to one file · Browse files at 6bdb7ec357aa Showing diff from parent bf9915467736 Diff from another changeset...

 
55
56
57
58
 
59
60
61
 
55
56
57
 
58
59
60
61
@@ -55,7 +55,7 @@
  for name in repo.namedbranches:   combo.addItem(name)   - tags = list(self.repo.tags()) + tags = list(self.repo.tags()) + repo._bookmarks.keys()   tags.sort(reverse=True)   for tag in tags:   combo.addItem(hglib.tounicode(tag))