diff options
author | 2020-04-02 14:39:24 +0200 | |
---|---|---|
committer | 2020-04-02 14:39:24 +0200 | |
commit | d77a2bbc50305d05371197f4cfe3354cfca4c627 (patch) | |
tree | be1eed54972d9843f66114311f93b68b579046ac /bot/utils/persist.py | |
parent | Merge pull request #382 from ks129/game-fuzzy (diff) | |
parent | Merge master: adjust `Space` cog location (diff) |
Merge pull request #329 from python-discord/seasonal-purge
Deseasonify: Make all cogs available year-round, and manage only branding by season.
Diffstat (limited to 'bot/utils/persist.py')
-rw-r--r-- | bot/utils/persist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/utils/persist.py b/bot/utils/persist.py index a60a1219..d78e5420 100644 --- a/bot/utils/persist.py +++ b/bot/utils/persist.py @@ -2,7 +2,7 @@ import sqlite3 from pathlib import Path from shutil import copyfile -from bot.seasons.season import get_seasons +from bot.exts import get_package_names DIRECTORY = Path("data") # directory that has a persistent volume mapped to it @@ -41,7 +41,7 @@ def make_persistent(file_path: Path) -> Path: raise OSError(f"File not found at {file_path}.") # detect season in datafile path for assigning to subdirectory - season = next((s for s in get_seasons() if s in file_path.parts), None) + season = next((s for s in get_package_names() if s in file_path.parts), None) if season: # make sure subdirectory exists first |