From 69bdc3a1849407f64ef93bd2e5119e54d6cd2208 Mon Sep 17 00:00:00 2001 From: Nihaal Sangha Date: Fri, 15 Jan 2021 10:28:11 +0000 Subject: [PATCH] Change copyright year to present --- LICENSE | 2 +- discord/__init__.py | 4 ++-- discord/__main__.py | 2 +- discord/abc.py | 2 +- discord/activity.py | 2 +- discord/appinfo.py | 2 +- discord/asset.py | 4 ++-- discord/audit_logs.py | 2 +- discord/backoff.py | 2 +- discord/calls.py | 2 +- discord/channel.py | 2 +- discord/client.py | 2 +- discord/colour.py | 2 +- discord/context_managers.py | 2 +- discord/embeds.py | 2 +- discord/emoji.py | 2 +- discord/enums.py | 2 +- discord/errors.py | 2 +- discord/ext/commands/__init__.py | 2 +- discord/ext/commands/_types.py | 2 +- discord/ext/commands/bot.py | 2 +- discord/ext/commands/cog.py | 2 +- discord/ext/commands/context.py | 2 +- discord/ext/commands/converter.py | 2 +- discord/ext/commands/cooldowns.py | 2 +- discord/ext/commands/core.py | 2 +- discord/ext/commands/errors.py | 2 +- discord/ext/commands/help.py | 2 +- discord/ext/commands/view.py | 2 +- discord/ext/tasks/__init__.py | 2 +- discord/file.py | 2 +- discord/flags.py | 3 +-- discord/gateway.py | 2 +- discord/guild.py | 2 +- discord/http.py | 2 +- discord/integrations.py | 2 +- discord/invite.py | 2 +- discord/iterators.py | 4 ++-- discord/member.py | 2 +- discord/mentions.py | 2 +- discord/message.py | 2 +- discord/mixins.py | 2 +- discord/object.py | 2 +- discord/oggparse.py | 2 +- discord/opus.py | 4 ++-- discord/partial_emoji.py | 2 +- discord/permissions.py | 2 +- discord/player.py | 2 +- discord/raw_models.py | 2 +- discord/reaction.py | 2 +- discord/relationship.py | 2 +- discord/role.py | 2 +- discord/shard.py | 2 +- discord/state.py | 2 +- discord/sticker.py | 2 +- discord/team.py | 2 +- discord/template.py | 2 +- discord/user.py | 2 +- discord/utils.py | 2 +- discord/voice_client.py | 2 +- discord/webhook.py | 2 +- discord/widget.py | 2 +- docs/conf.py | 2 +- docs/locale/ja/LC_MESSAGES/intents.po | 3 +-- 64 files changed, 68 insertions(+), 70 deletions(-) diff --git a/LICENSE b/LICENSE index eb8cdf65..700c21b6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/__init__.py b/discord/__init__.py index 48f98fea..eba52408 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -6,7 +6,7 @@ Discord API Wrapper A basic wrapper for the Discord API. -:copyright: (c) 2015-2020 Rapptz +:copyright: (c) 2015-present Rapptz :license: MIT, see LICENSE for more details. """ @@ -14,7 +14,7 @@ A basic wrapper for the Discord API. __title__ = 'discord' __author__ = 'Rapptz' __license__ = 'MIT' -__copyright__ = 'Copyright 2015-2020 Rapptz' +__copyright__ = 'Copyright 2015-present Rapptz' __version__ = '1.6.0' __path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/discord/__main__.py b/discord/__main__.py index 70854748..47504b7f 100644 --- a/discord/__main__.py +++ b/discord/__main__.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/abc.py b/discord/abc.py index e45312b6..cf4b8ab4 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/activity.py b/discord/activity.py index 91e094e2..c230154d 100644 --- a/discord/activity.py +++ b/discord/activity.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/appinfo.py b/discord/appinfo.py index 4ff76d39..97337b91 100644 --- a/discord/appinfo.py +++ b/discord/appinfo.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/asset.py b/discord/asset.py index 29a86769..ea457297 100644 --- a/discord/asset.py +++ b/discord/asset.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -165,7 +165,7 @@ class Asset: format = 'gif' if emoji.animated else static_format return cls(state, '/emojis/{0.id}.{1}'.format(emoji, format)) - + def __str__(self): return self.BASE + self._url if self._url is not None else '' diff --git a/discord/audit_logs.py b/discord/audit_logs.py index c316f146..90c14986 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/backoff.py b/discord/backoff.py index b602ec64..0f49d155 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/calls.py b/discord/calls.py index a1b6ab09..80fc8954 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/channel.py b/discord/channel.py index 2bac8b1a..9ab5d226 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/client.py b/discord/client.py index 6f9cb80a..22c25db7 100644 --- a/discord/client.py +++ b/discord/client.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/colour.py b/discord/colour.py index a9e87f3e..c6e3dd67 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/context_managers.py b/discord/context_managers.py index 279b224d..e4fde6b3 100644 --- a/discord/context_managers.py +++ b/discord/context_managers.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/embeds.py b/discord/embeds.py index aa1563e4..e93e16f2 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/emoji.py b/discord/emoji.py index 733980e9..735d508c 100644 --- a/discord/emoji.py +++ b/discord/emoji.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/enums.py b/discord/enums.py index fff7a153..721dbe47 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/errors.py b/discord/errors.py index be3015cc..fbdff0aa 100644 --- a/discord/errors.py +++ b/discord/errors.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/__init__.py b/discord/ext/commands/__init__.py index 669a49a9..6f356c5d 100644 --- a/discord/ext/commands/__init__.py +++ b/discord/ext/commands/__init__.py @@ -6,7 +6,7 @@ discord.ext.commands An extension module to facilitate creation of bot commands. -:copyright: (c) 2015-2020 Rapptz +:copyright: (c) 2015-present Rapptz :license: MIT, see LICENSE for more details. """ diff --git a/discord/ext/commands/_types.py b/discord/ext/commands/_types.py index 664f7519..36d0efc9 100644 --- a/discord/ext/commands/_types.py +++ b/discord/ext/commands/_types.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 2fc08fa2..ed3ae078 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/cog.py b/discord/ext/commands/cog.py index 774f5317..bea69c04 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index d129e819..155e4797 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index aff96aac..27991eca 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index c530bb12..cd7d67ea 100644 --- a/discord/ext/commands/cooldowns.py +++ b/discord/ext/commands/cooldowns.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 2d2291f4..b62eadb5 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py index 541a9833..aa4c585b 100644 --- a/discord/ext/commands/errors.py +++ b/discord/ext/commands/errors.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 5d567325..459b108d 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/commands/view.py b/discord/ext/commands/view.py index 36c89037..7f74c700 100644 --- a/discord/ext/commands/view.py +++ b/discord/ext/commands/view.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index d2db5df8..9dbc7f9c 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/file.py b/discord/file.py index 9d1a6ff1..30b22422 100644 --- a/discord/file.py +++ b/discord/file.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/flags.py b/discord/flags.py index cd8557a3..be90fa5c 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -938,4 +938,3 @@ class MemberCacheFlags(BaseFlags): @property def _online_only(self): return self.value == 1 - diff --git a/discord/gateway.py b/discord/gateway.py index d82e552f..9b85b866 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/guild.py b/discord/guild.py index f78a7315..3b12eeea 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/http.py b/discord/http.py index b90c6b85..edfe031c 100644 --- a/discord/http.py +++ b/discord/http.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/integrations.py b/discord/integrations.py index 37fda5e9..e2d05575 100644 --- a/discord/integrations.py +++ b/discord/integrations.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/invite.py b/discord/invite.py index 2f7c273d..627e90ef 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/iterators.py b/discord/iterators.py index 51431651..a9575d49 100644 --- a/discord/iterators.py +++ b/discord/iterators.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -101,7 +101,7 @@ class _ChunkedAsyncIterator(_AsyncIterator): def __init__(self, iterator, max_size): self.iterator = iterator self.max_size = max_size - + async def next(self): ret = [] n = 0 diff --git a/discord/member.py b/discord/member.py index afce4c34..38c2d0df 100644 --- a/discord/member.py +++ b/discord/member.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/mentions.py b/discord/mentions.py index 14fcecc5..2cabc4c6 100644 --- a/discord/mentions.py +++ b/discord/mentions.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/message.py b/discord/message.py index f47a45f3..ae405fd3 100644 --- a/discord/message.py +++ b/discord/message.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/mixins.py b/discord/mixins.py index e115e844..afdbc1d0 100644 --- a/discord/mixins.py +++ b/discord/mixins.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/object.py b/discord/object.py index 1ca96c79..d349caa3 100644 --- a/discord/object.py +++ b/discord/object.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/oggparse.py b/discord/oggparse.py index 5dd34345..a7b9dcd7 100644 --- a/discord/oggparse.py +++ b/discord/oggparse.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/opus.py b/discord/opus.py index 1f2a03f3..28b37ae0 100644 --- a/discord/opus.py +++ b/discord/opus.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -374,7 +374,7 @@ class Decoder(_OpusStruct): def _set_gain(self, adjustment): """Configures decoder gain adjustment. - + Scales the decoded output by a factor specified in Q8 dB units. This has a maximum range of -32768 to 32767 inclusive, and returns OPUS_BAD_ARG (-1) otherwise. The default is zero indicating no adjustment. diff --git a/discord/partial_emoji.py b/discord/partial_emoji.py index 346ccafe..e174a513 100644 --- a/discord/partial_emoji.py +++ b/discord/partial_emoji.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/permissions.py b/discord/permissions.py index aee76fe6..0a4e9438 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/player.py b/discord/player.py index d5540a56..413e5de6 100644 --- a/discord/player.py +++ b/discord/player.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/raw_models.py b/discord/raw_models.py index dd4d5e5d..dd8ce9e3 100644 --- a/discord/raw_models.py +++ b/discord/raw_models.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/reaction.py b/discord/reaction.py index 1d30b483..437c0fe9 100644 --- a/discord/reaction.py +++ b/discord/reaction.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/relationship.py b/discord/relationship.py index cd58e4b0..83866f4e 100644 --- a/discord/relationship.py +++ b/discord/relationship.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/role.py b/discord/role.py index bc50fdbb..7c6e5223 100644 --- a/discord/role.py +++ b/discord/role.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/shard.py b/discord/shard.py index ebc27b0d..84ba8880 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/state.py b/discord/state.py index 8005fb95..1784fc5f 100644 --- a/discord/state.py +++ b/discord/state.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/sticker.py b/discord/sticker.py index 845940b4..d94d1644 100644 --- a/discord/sticker.py +++ b/discord/sticker.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/team.py b/discord/team.py index e59c122c..63cd0c07 100644 --- a/discord/team.py +++ b/discord/team.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/template.py b/discord/template.py index 0dc54e4f..1c333380 100644 --- a/discord/template.py +++ b/discord/template.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/user.py b/discord/user.py index 690cbce9..53cf81df 100644 --- a/discord/user.py +++ b/discord/user.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/utils.py b/discord/utils.py index fd24eaee..775907ff 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/voice_client.py b/discord/voice_client.py index 675fdae9..c276c3e4 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/webhook.py b/discord/webhook.py index 51e62fc3..bdbc8eff 100644 --- a/discord/webhook.py +++ b/discord/webhook.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/discord/widget.py b/discord/widget.py index 0fcf7ec0..b76df877 100644 --- a/discord/widget.py +++ b/discord/widget.py @@ -3,7 +3,7 @@ """ The MIT License (MIT) -Copyright (c) 2015-2020 Rapptz +Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/docs/conf.py b/docs/conf.py index d15ad1be..35cd2d8e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ master_doc = 'index' # General information about the project. project = u'discord.py' -copyright = u'2015-2021, Rapptz' +copyright = u'2015-present, Rapptz' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/docs/locale/ja/LC_MESSAGES/intents.po b/docs/locale/ja/LC_MESSAGES/intents.po index 5a4cbd7a..a3d6d75e 100644 --- a/docs/locale/ja/LC_MESSAGES/intents.po +++ b/docs/locale/ja/LC_MESSAGES/intents.po @@ -1,5 +1,5 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2015-2020, Rapptz +# Copyright (C) 2015-present, Rapptz # This file is distributed under the same license as the discord.py package. # FIRST AUTHOR , 2020. # @@ -427,4 +427,3 @@ msgid "" "If you truly dislike the direction Discord is going with their API, you " "can contact them via `support `_" msgstr "" -