[openload] Don't use bare except when removing temp files
This commit is contained in:
parent
9ef909f2b2
commit
6ff27b8d5a
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class PhantomJSwrapper(object):
|
|||
for name in self._TMP_FILE_NAMES:
|
||||
try:
|
||||
os.remove(self._TMP_FILES[name].name)
|
||||
except:
|
||||
except (IOError, OSError):
|
||||
pass
|
||||
|
||||
def _save_cookies(self, url):
|
||||
|
|
Loading…
Reference in a new issue