Skip to content

Commit

Permalink
fix: severely forgor
Browse files Browse the repository at this point in the history
  • Loading branch information
ooliver1 committed Apr 27, 2022
1 parent dca07b7 commit 45eebb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion botbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .checks import *


__version__ = "1.14.0"
__version__ = "1.14.1"


getLogger(__name__).addHandler(NullHandler())
2 changes: 1 addition & 1 deletion botbase/botbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_config(config_module: str) -> tuple[str, str]:
else:
return config_module, ""

def __init__(self, *args, config_module: str = "default", **kwargs) -> None:
def __init__(self, *args, config_module: str = "config", **kwargs) -> None:
pre = kwargs.pop("command_prefix", self.get_pre)
saf = kwargs.pop("strip_after_prefix", True)
ca = kwargs.pop("case_insensitive", True)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ooliver-botbase"
version = "1.14.0"
version = "1.14.1"
description = "A personal nextcord bot base package for bots."
authors = ["ooliver1 <oliverwilkes2006@icloud.com>"]
license = "MIT"
Expand Down

0 comments on commit 45eebb2

Please sign in to comment.