Skip to content

Fixed error when deleting local storage file on Python < 3.8

The 'missing_ok' parameter to the 'unlink' method was introduced in Python 3.8. To make it work with older versions of Python 3 I am catching the 'FileNotFoundError' instead.

See https://docs.python.org/3/library/pathlib.html#pathlib.Path.unlink

Merge request reports