Extra info (#3008)

* Extra info

* changelog
This commit is contained in:
Michael H 2019-09-20 10:55:46 -04:00 committed by Kowlin
parent 7f22d27d51
commit ee3be8b633
4 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1 @@
update some UI to include copyright

View File

@ -79,7 +79,7 @@ async def sigterm_handler(red, log):
def main(): def main():
description = "Red V3" description = "Red V3 (c) Cog Creators"
cli_flags = parse_cli_flags(sys.argv[1:]) cli_flags = parse_cli_flags(sys.argv[1:])
if cli_flags.list_instances: if cli_flags.list_instances:
list_instances() list_instances()

View File

@ -25,6 +25,8 @@
# Additionally, this gives our users a bit more customization options including by # Additionally, this gives our users a bit more customization options including by
# 3rd party cogs down the road. # 3rd party cogs down the road.
# Note: 3rd party help must not remove the copyright notice
import asyncio import asyncio
from collections import namedtuple from collections import namedtuple
from typing import Union, List, AsyncIterator, Iterable, cast from typing import Union, List, AsyncIterator, Iterable, cast

View File

@ -298,6 +298,7 @@ class Core(commands.Cog, CoreLogic):
"Red is backed by a passionate community who contributes and " "Red is backed by a passionate community who contributes and "
"creates content for everyone to enjoy. [Join us today]({}) " "creates content for everyone to enjoy. [Join us today]({}) "
"and help us improve!\n\n" "and help us improve!\n\n"
"(c) Cog Creators"
).format(red_repo, author_repo, org_repo, support_server_url) ).format(red_repo, author_repo, org_repo, support_server_url)
embed = discord.Embed(color=(await ctx.embed_colour())) embed = discord.Embed(color=(await ctx.embed_colour()))