Fixed failing on filesystem events.
- Found when running eris over the cpython codebase.
This commit is contained in:
parent
be42070097
commit
187b937236
1 changed files with 1 additions and 1 deletions
|
|
@ -288,7 +288,7 @@ class Summary:
|
||||||
full_path = os.path.join(self._root_path, path)
|
full_path = os.path.join(self._root_path, path)
|
||||||
try:
|
try:
|
||||||
change_time = os.stat(full_path).st_ctime
|
change_time = os.stat(full_path).st_ctime
|
||||||
except FileNotFoundError:
|
except OSError:
|
||||||
return
|
return
|
||||||
row = [tools.Result(path, tool) for tool in tools.tools_for_path(path)]
|
row = [tools.Result(path, tool) for tool in tools.tools_for_path(path)]
|
||||||
entry = Entry(path, row, change_time)
|
entry = Entry(path, row, change_time)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue