Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

hgignore: fix error handling in refresh function

Changeset a7d29ff8d01f

Parent 25f73986c0af

by Steve Borho

Changes to one file · Browse files at a7d29ff8d01f Showing diff from parent 25f73986c0af Diff from another changeset...

 
214
215
216
217
 
218
219
 
220
221
222
 
214
215
216
 
217
218
219
220
221
222
223
@@ -214,9 +214,10 @@
  hglib.invalidaterepo(self.repo)   wctx = self.repo[None]   wctx.status(unknown=True) - except util.Abort, error.RepoError: + except (util.Abort, error.RepoError), e:   qtlib.WarningMsgBox(_('Unable to read repository status'),   uni(str(e)), parent=self) + return     self.lclunknowns = wctx.unknown()   self.unknownlist.clear()