From ee3be8b633371b0f936c77b2e71792dcd9dcddca Mon Sep 17 00:00:00 2001 From: Michael H Date: Fri, 20 Sep 2019 10:55:46 -0400 Subject: [PATCH] Extra info (#3008) * Extra info * changelog --- changelog.d/3008.misc.rst | 1 + redbot/__main__.py | 2 +- redbot/core/commands/help.py | 2 ++ redbot/core/core_commands.py | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 changelog.d/3008.misc.rst diff --git a/changelog.d/3008.misc.rst b/changelog.d/3008.misc.rst new file mode 100644 index 000000000..3f99a7ca0 --- /dev/null +++ b/changelog.d/3008.misc.rst @@ -0,0 +1 @@ +update some UI to include copyright \ No newline at end of file diff --git a/redbot/__main__.py b/redbot/__main__.py index 5ec928e86..042294952 100644 --- a/redbot/__main__.py +++ b/redbot/__main__.py @@ -79,7 +79,7 @@ async def sigterm_handler(red, log): def main(): - description = "Red V3" + description = "Red V3 (c) Cog Creators" cli_flags = parse_cli_flags(sys.argv[1:]) if cli_flags.list_instances: list_instances() diff --git a/redbot/core/commands/help.py b/redbot/core/commands/help.py index 515ad9866..6e47b3a0f 100644 --- a/redbot/core/commands/help.py +++ b/redbot/core/commands/help.py @@ -25,6 +25,8 @@ # Additionally, this gives our users a bit more customization options including by # 3rd party cogs down the road. +# Note: 3rd party help must not remove the copyright notice + import asyncio from collections import namedtuple from typing import Union, List, AsyncIterator, Iterable, cast diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index e10a37ada..52ebffb3d 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -298,6 +298,7 @@ class Core(commands.Cog, CoreLogic): "Red is backed by a passionate community who contributes and " "creates content for everyone to enjoy. [Join us today]({}) " "and help us improve!\n\n" + "(c) Cog Creators" ).format(red_repo, author_repo, org_repo, support_server_url) embed = discord.Embed(color=(await ctx.embed_colour()))