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

stable hgignore: catch environment errors from repo.status() (fixes #300)

Changeset 51a693361fab

Parent b1ab232daa86

by Steve Borho

Changes to one file · Browse files at 51a693361fab Showing diff from parent b1ab232daa86 Diff from another changeset...

 
224
225
226
227
 
228
229
230
 
224
225
226
 
227
228
229
230
@@ -224,7 +224,7 @@
  self.repo.thginvalidate()   wctx = self.repo[None]   wctx.status(unknown=True) - except error.RepoError, e: + except (EnvironmentError, error.RepoError), e:   qtlib.WarningMsgBox(_('Unable to read repository status'),   uni(str(e)), parent=self)   except util.Abort, e: