We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1907259 commit c8c0ec3Copy full SHA for c8c0ec3
latextools/utils/cache.py
@@ -423,7 +423,7 @@ def save(self, key=None):
423
del _objs[k]
424
file_path = os.path.join(self.cache_path, key)
425
try:
426
- os.path.remove(file_path)
+ os.remove(file_path)
427
except OSError:
428
pass
429
@@ -445,7 +445,7 @@ def save(self, key=None):
445
if _objs[key] == _invalid_object:
446
447
448
449
except OSError as e:
450
logger.error("error while deleting %s: %s", file_path, e)
451
traceback.print_exc()
0 commit comments