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 eb8cdf656d79..700c21b65a04 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 48f98feaa0b1..eba52408b94b 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -6,7 +6,7 @@ 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 @@ __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 708547484d99..47504b7f9a0b 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 e45312b66a62..cf4b8ab425e3 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 91e094e2c58f..c230154d393d 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 4ff76d39aa21..97337b916197 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 29a86769bea0..ea4572972d2f 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 @@ def _from_emoji(cls, state, emoji, *, format=None, static_format='png'): 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 c316f1468a16..90c149866ac5 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 b602ec646605..0f49d155abcf 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 a1b6ab09e1b4..80fc8954b947 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 2bac8b1aa9ba..9ab5d226317b 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 6f9cb80a0239..22c25db7b9c2 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 a9e87f3eecf3..c6e3dd67fdb9 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 279b224d91f8..e4fde6b3c2dd 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 aa1563e44cc0..e93e16f2984a 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 733980e908f9..735d508c098a 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 fff7a1536dc5..721dbe47ebae 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 be3015ccaf3a..fbdff0aa044f 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 669a49a90b49..6f356c5d5584 100644 --- a/discord/ext/commands/__init__.py +++ b/discord/ext/commands/__init__.py @@ -6,7 +6,7 @@ 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 664f7519e5ae..36d0efc9e6ee 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 2fc08fa2aad0..ed3ae0785f69 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 774f5317cb39..bea69c04c85e 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 d129e819d452..155e47971155 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 aff96aac5dc8..27991eca0e7d 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 c530bb1203e0..cd7d67ea848d 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 2d2291f40cd3..b62eadb5e5c0 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 541a98334be2..aa4c585b43f4 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 5d5673254522..459b108d1ac7 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 36c890370a58..7f74c700796b 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 d2db5df8fd02..9dbc7f9c87fb 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 9d1a6ff1f506..30b22422af8e 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 cd8557a31dcf..be90fa5ca286 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 @@ def _voice_only(self): @property def _online_only(self): return self.value == 1 - diff --git a/discord/gateway.py b/discord/gateway.py index d82e552f6bb3..9b85b8664ccc 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 f78a7315f9e4..3b12eeeaad06 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 b90c6b85cfda..edfe031cb24c 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 37fda5e97e7b..e2d05575ecdc 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 2f7c273d12f0..627e90ef1aa5 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 514316511f9b..a9575d495dea 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 afce4c3488cd..38c2d0df3edb 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 14fcecc574d5..2cabc4c611f7 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 f47a45f30cc5..ae405fd30261 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 e115e84432a2..afdbc1d0c906 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 1ca96c79467e..d349caa3131c 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 5dd34345eee8..a7b9dcd7c95c 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 1f2a03f38160..28b37ae055dc 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 @@ def packet_get_samples_per_frame(cls, data): 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 346ccafee6a2..e174a513b4b2 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 aee76fe66aca..0a4e9438740d 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 d5540a567f31..413e5de668f1 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 dd4d5e5d4813..dd8ce9e35cf5 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 1d30b483df84..437c0fe9d987 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 cd58e4b01eea..83866f4ee6c2 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 bc50fdbbb4aa..7c6e5223ee9f 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 ebc27b0da2c0..84ba8880c608 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 8005fb955167..1784fc5f6fc3 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 845940b4f068..d94d16444bd7 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 e59c122c3019..63cd0c075d94 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 0dc54e4fdf8c..1c3333803a99 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 690cbce9fe90..53cf81dffcc0 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 fd24eaeec13f..775907ff6229 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 675fdae948ac..c276c3e45ab2 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 51e62fc3c04b..bdbc8eff1819 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 0fcf7ec05d4b..b76df8777e37 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 d15ad1be0b5e..35cd2d8ecc4b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ # 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 5a4cbd7a3e91..a3d6d75ee57a 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 "" -