mirror of https://github.com/scrapy/scrapy.git
Merge pull request #6198 from Rotzbua/refactor_exception
refactor(): use `OSError` exception
This commit is contained in:
commit
825137399d
|
|
@ -8,7 +8,6 @@ import functools
|
|||
import hashlib
|
||||
import logging
|
||||
import mimetypes
|
||||
import os
|
||||
import time
|
||||
from collections import defaultdict
|
||||
from contextlib import suppress
|
||||
|
|
@ -66,7 +65,7 @@ class FSFilesStore:
|
|||
absolute_path = self._get_filesystem_path(path)
|
||||
try:
|
||||
last_modified = absolute_path.stat().st_mtime
|
||||
except os.error:
|
||||
except OSError:
|
||||
return {}
|
||||
|
||||
with absolute_path.open("rb") as f:
|
||||
|
|
|
|||
Loading…
Reference in New Issue