From aefcf91671581e4023b099c014c6126ea42918b4 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 15 Oct 2021 13:40:17 -0700 Subject: [PATCH] upcasing the help method catagroies in the help embed --- .gitlab-ci.yml | 2 -- app/help_methods.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index afe6c26a..021fb14b 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,5 +19,3 @@ build_and_push_container: - docker push ldooks/dragon-bot:latest only: - master - tags: - - docker diff --git a/app/help_methods.py b/app/help_methods.py index f767f1bd..f4cf7804 100755 --- a/app/help_methods.py +++ b/app/help_methods.py @@ -236,7 +236,7 @@ def get_help_embed(bot): command_list = [] for command in categories[category]: command_list.append("`{}`".format(command)) - embed.add_field(name=str(category).upper(), value=', '.join(command_list), inline=False) + embed.add_field(name="**%s**" % str(category).upper(), value=', '.join(command_list), inline=False) description2 = "**Use `!help ` for more information about a command.** \n\n" + \ "**Examples:** \n `!help dog` for detailed help for the dog command \n\n" + \