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

stable status: catch util.Abort from subrepository status calls

Refs #1660

Changeset 23f09b8dcee3

Parent f334a0395129

by Steve Borho

Changes to one file · Browse files at 23f09b8dcee3 Showing diff from parent f334a0395129 Diff from another changeset...

 
698
699
700
701
 
 
 
702
703
704
 
698
699
700
 
701
702
703
704
705
706
@@ -698,7 +698,9 @@
  for s in wctx.substate:   if matcher(s) and wctx.sub(s).dirty():   self.subrepos.append(s) - except (OSError, IOError, error.ConfigError, error.RepoError), e: + except (error.ConfigError, error.RepoError), e: + self.status_error = str(e) + except (OSError, IOError, util.Abort), e:   self.status_error = str(e)     def status_wait(thread):