Skip to content

Commit

Permalink
Fix string bug
Browse files Browse the repository at this point in the history
  • Loading branch information
you-n-g committed Nov 2, 2023
1 parent 4ed1b04 commit 4d6c99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wan/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, config_path: str = "~/.dotfiles/.notifiers.yaml"):
self.env = self.config.get("env", {})

def ntf(self, *messages):
message = " ".join(messages)
message = " ".join(str(m)for m in messages)
logger.debug("Sending message: {}".format(message))
if len(message) == 0:
logger.warning("Blank message.")
Expand Down

0 comments on commit 4d6c99d

Please sign in to comment.