Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable hgignore: fix UnboundLocalError in refresh function (closes #576)

Changeset 7562f0e8dc7b

Parent 57224ab9877c

by André Sintzoff

Changes to one file · Browse files at 7562f0e8dc7b Showing diff from parent 57224ab9877c Diff from another changeset...

 
228
229
230
 
 
 
231
232
233
234
235
236
 
228
229
230
231
232
233
234
235
 
236
237
238
@@ -228,9 +228,11 @@
  l = []   self.ignorelines = [line.strip() for line in l]   self.ignorelist.clear() + + uni = hglib.tounicode +   self.ignorelist.addItems([uni(l) for l in self.ignorelines])   - uni = hglib.tounicode   try:   self.repo.thginvalidate()   wctx = self.repo[None]