diff options
author | 2019-09-30 18:47:59 -0700 | |
---|---|---|
committer | 2019-10-01 18:25:33 -0700 | |
commit | 5e3d4ca7b85502b65ed694355a01e4dfbff4f8b2 (patch) | |
tree | 7e3292e65144038bf240ef424bf6435dca6fbb46 | |
parent | Fix circular imports (diff) |
Fix superstarify resource path
-rw-r--r-- | bot/cogs/moderation/superstarify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/moderation/superstarify.py b/bot/cogs/moderation/superstarify.py index cc087d361..bc7ec7639 100644 --- a/bot/cogs/moderation/superstarify.py +++ b/bot/cogs/moderation/superstarify.py @@ -18,7 +18,7 @@ from .utils import post_infraction log = logging.getLogger(__name__) NICKNAME_POLICY_URL = "https://pythondiscord.com/pages/rules/#wiki-toc-nickname-policy" -with Path("resources/stars.json").open(encoding="utf-8") as stars_file: +with Path("bot/resources/stars.json").open(encoding="utf-8") as stars_file: STAR_NAMES = json.load(stars_file) |