diff options
Diffstat (limited to 'slack/util.py')
-rw-r--r-- | slack/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slack/util.py b/slack/util.py index cfe0e03..f7d16f5 100644 --- a/slack/util.py +++ b/slack/util.py @@ -28,7 +28,7 @@ def get_callback_name(callback: Callable[..., WeechatCallbackReturnType]) -> str return callback_id -def with_color(color: Optional[str], string: str, reset_color: str = "reset"): +def with_color(color: Optional[str], string: str, reset_color: str = "default"): if color: return f"{weechat.color(color)}{string}{weechat.color(reset_color)}" else: |