Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

cachethg: stringify exceptions

Changeset 1cc95a6bcd2a

Parent 17a7c044d90a

by Steve Borho

Changes to one file · Browse files at 1cc95a6bcd2a Showing diff from parent 17a7c044d90a Diff from another changeset...

 
150
151
152
153
 
154
155
156
 
161
162
163
164
 
165
166
167
 
150
151
152
 
153
154
155
156
 
161
162
163
 
164
165
166
167
@@ -150,7 +150,7 @@
  return IGNORED   except StandardError, e:   debugf("error while handling %s:", pdir) - debugf(e) + debugf(str(e))   add(pdir, UNKNOWN)   return UNKNOWN   # get file status @@ -161,7 +161,7 @@
  repostate = repo.status(match=matcher, ignored=True,   clean=True, unknown=True)   except util.Abort, inst: - debugf("abort: %s", inst) + debugf("abort: %s", str(inst))   debugf("treat as unknown : %s", path)   return UNKNOWN