Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

stable hglib: remove NULL chars from tag names

Fixes #919

Changeset 910975e21005

Parent 9f683dba8556

by Yuki KODAMA

Changes to one file · Browse files at 910975e21005 Showing diff from parent 9f683dba8556 Diff from another changeset...

 
109
110
111
112
 
113
114
115
 
109
110
111
 
112
113
114
115
@@ -109,7 +109,7 @@
  deads = getdeadbranch(repo.ui)   for branch in repo.branchtags().keys(): # encoded in UTF-8   if branch not in deads: - lives.append(branch) + lives.append(branch.replace('\0', ''))   return lives    _hidetags = None