diff --git a/nomen/notifications.py b/nomen/notifications.py index 252cc30..d54b43a 100644 --- a/nomen/notifications.py +++ b/nomen/notifications.py @@ -222,11 +222,11 @@ class Notifications(Cog): @keyword.command() @guild_only() - async def add(self, ctx, keyword): + async def add(self, ctx, *, keyword): """ Adds a notification keyword - Use quotes for a keyword with spaces! + Quotes aren't necessary, spaces are included automatically! """ try: @@ -238,11 +238,11 @@ class Notifications(Cog): @keyword.command() @guild_only() - async def regex(self, ctx, keyword): + async def regex(self, ctx, *, keyword): """ Adds a notification regex - Use quotes for a regex with spaces! + Quotes aren't necessary, spaces are included automatically! """ # TODO: Add regex names to make notifications cleaner @@ -255,7 +255,7 @@ class Notifications(Cog): @keyword.command(aliases=["delete", "del"]) @guild_only() - async def remove(self, ctx, keyword): + async def remove(self, ctx, *, keyword): """ Removes a keyword or regex