diff options
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index eb35372d..aeeb30ac 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -41,7 +41,7 @@ class Bookmark(commands.Cog): )
hint = ' '.join(args)
- if hint == "":
+ if not hint:
hint = "No hint provided."
embed.set_thumbnail(
|