Skip to content

Commit

Permalink
(app) clarify log message when migrating old .cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ebr committed Nov 29, 2024
1 parent da987f3 commit fd51676
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __call__(self, cursor: sqlite3.Cursor) -> None:

def _remove_convert_cache(self) -> None:
"""Rename models/.cache to models/.convert_cache."""
self._logger.info("Removing .cache directory. Converted models will now be cached in .convert_cache.")
self._logger.info("Removing models/.cache directory. Converted models will now be cached in .convert_cache.")
legacy_convert_path = self._app_config.root_path / "models" / ".cache"
shutil.rmtree(legacy_convert_path, ignore_errors=True)

Expand Down

0 comments on commit fd51676

Please sign in to comment.