aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDante Dam <[email protected]>2019-01-11 09:25:24 -0800
committerRapptz <[email protected]>2019-01-28 22:22:50 -0500
commit9656a21ebec7c893c8be40a38f3e56c19bf1b033 (patch)
tree986a9134f2a9b3f08b2ca484d667f855842cb174
parentFix the Context.message example to actually use ctx.message (diff)
downloaddiscord.py-9656a21ebec7c893c8be40a38f3e56c19bf1b033.tar.xz
discord.py-9656a21ebec7c893c8be40a38f3e56c19bf1b033.zip
Bumped copyright years to 2019.
-rw-r--r--LICENSE2
-rw-r--r--discord/__init__.py4
-rw-r--r--discord/__main__.py2
-rw-r--r--discord/abc.py2
-rw-r--r--discord/activity.py2
-rw-r--r--discord/audit_logs.py2
-rw-r--r--discord/backoff.py2
-rw-r--r--discord/calls.py2
-rw-r--r--discord/channel.py2
-rw-r--r--discord/client.py2
-rw-r--r--discord/colour.py2
-rw-r--r--discord/context_managers.py2
-rw-r--r--discord/embeds.py2
-rw-r--r--discord/emoji.py2
-rw-r--r--discord/enums.py2
-rw-r--r--discord/errors.py2
-rw-r--r--discord/ext/commands/__init__.py2
-rw-r--r--discord/ext/commands/bot.py2
-rw-r--r--discord/ext/commands/context.py2
-rw-r--r--discord/ext/commands/converter.py2
-rw-r--r--discord/ext/commands/cooldowns.py2
-rw-r--r--discord/ext/commands/core.py2
-rw-r--r--discord/ext/commands/errors.py2
-rw-r--r--discord/ext/commands/formatter.py2
-rw-r--r--discord/ext/commands/view.py2
-rw-r--r--discord/file.py2
-rw-r--r--discord/gateway.py2
-rw-r--r--discord/guild.py2
-rw-r--r--discord/http.py2
-rw-r--r--discord/invite.py2
-rw-r--r--discord/iterators.py2
-rw-r--r--discord/member.py2
-rw-r--r--discord/message.py2
-rw-r--r--discord/mixins.py2
-rw-r--r--discord/object.py2
-rw-r--r--discord/opus.py2
-rw-r--r--discord/permissions.py2
-rw-r--r--discord/player.py2
-rw-r--r--discord/raw_models.py2
-rw-r--r--discord/reaction.py2
-rw-r--r--discord/relationship.py2
-rw-r--r--discord/role.py2
-rw-r--r--discord/shard.py2
-rw-r--r--discord/state.py2
-rw-r--r--discord/utils.py2
-rw-r--r--discord/voice_client.py2
-rw-r--r--discord/webhook.py2
-rw-r--r--docs/conf.py2
-rw-r--r--docs/locale/ja/LC_MESSAGES/api.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/discord.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/faq.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/index.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/intro.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/logging.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/migrating.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/migrating_to_async.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/quickstart.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/sphinx.po2
-rw-r--r--docs/locale/ja/LC_MESSAGES/whats_new.po2
59 files changed, 60 insertions, 60 deletions
diff --git a/LICENSE b/LICENSE
index f7befeaf..4003396c 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 826515fe..a982cadd 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-2017 Rapptz
+:copyright: (c) 2015-2019 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-2017 Rapptz'
+__copyright__ = 'Copyright 2015-2019 Rapptz'
__version__ = '1.0.0a'
from collections import namedtuple
diff --git a/discord/__main__.py b/discord/__main__.py
index 4d19f93f..698211c7 100644
--- a/discord/__main__.py
+++ b/discord/__main__.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 a0007993..43bdfec3 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 9463c469..cc85bf0f 100644
--- a/discord/activity.py
+++ b/discord/activity.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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/audit_logs.py b/discord/audit_logs.py
index 4b8449e3..faf05f20 100644
--- a/discord/audit_logs.py
+++ b/discord/audit_logs.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 3fa52d9f..01646f48 100644
--- a/discord/backoff.py
+++ b/discord/backoff.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 9231be9e..8b7f8bed 100644
--- a/discord/calls.py
+++ b/discord/calls.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 b2086933..6a630388 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 3055a1ff..f832efcc 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 d91aa2a1..21344c47 100644
--- a/discord/colour.py
+++ b/discord/colour.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 9297286f..38751831 100644
--- a/discord/context_managers.py
+++ b/discord/context_managers.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 51670ff9..ddc11b28 100644
--- a/discord/embeds.py
+++ b/discord/embeds.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 101c861e..dafb36d2 100644
--- a/discord/emoji.py
+++ b/discord/emoji.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 a1ebab8b..f7df9059 100644
--- a/discord/enums.py
+++ b/discord/enums.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 004620d3..963b898d 100644
--- a/discord/errors.py
+++ b/discord/errors.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 f5f7bb26..20749b21 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) 2017 Rapptz
+:copyright: (c) 2019 Rapptz
:license: MIT, see LICENSE for more details.
"""
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py
index 7bc97f81..61112139 100644
--- a/discord/ext/commands/bot.py
+++ b/discord/ext/commands/bot.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 73679e52..ea193696 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 49fd3228..8e276610 100644
--- a/discord/ext/commands/converter.py
+++ b/discord/ext/commands/converter.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 d44365b2..ae48b284 100644
--- a/discord/ext/commands/cooldowns.py
+++ b/discord/ext/commands/cooldowns.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 830eef1a..419594ac 100644
--- a/discord/ext/commands/core.py
+++ b/discord/ext/commands/core.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 c20c09f5..49d6f8d7 100644
--- a/discord/ext/commands/errors.py
+++ b/discord/ext/commands/errors.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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/formatter.py b/discord/ext/commands/formatter.py
index ba120f92..ce85e0d3 100644
--- a/discord/ext/commands/formatter.py
+++ b/discord/ext/commands/formatter.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 6634f0ac..251c535a 100644
--- a/discord/ext/commands/view.py
+++ b/discord/ext/commands/view.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 2351d3fb..d3a775fd 100644
--- a/discord/file.py
+++ b/discord/file.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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/gateway.py b/discord/gateway.py
index 803c8c25..edfc185a 100644
--- a/discord/gateway.py
+++ b/discord/gateway.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 1f62e74f..97247666 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 2441ca67..5ed862d8 100644
--- a/discord/http.py
+++ b/discord/http.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 acf7ce38..80483ab1 100644
--- a/discord/invite.py
+++ b/discord/invite.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 5ca5aabf..3f8b9cb5 100644
--- a/discord/iterators.py
+++ b/discord/iterators.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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/member.py b/discord/member.py
index 527111a5..c5aa897a 100644
--- a/discord/member.py
+++ b/discord/member.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 0d7262f0..bf7fbdcb 100644
--- a/discord/message.py
+++ b/discord/message.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 8dd1cef5..3717cf46 100644
--- a/discord/mixins.py
+++ b/discord/mixins.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 0bb10267..0ab6e0cc 100644
--- a/discord/object.py
+++ b/discord/object.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 0fe5184b..f62fa0b1 100644
--- a/discord/opus.py
+++ b/discord/opus.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 79f5f4b7..4c2d5f70 100644
--- a/discord/permissions.py
+++ b/discord/permissions.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 e72d2c43..74cd073f 100644
--- a/discord/player.py
+++ b/discord/player.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 47bfbbd5..adacbd85 100644
--- a/discord/raw_models.py
+++ b/discord/raw_models.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2018 Rapptz
+Copyright (c) 2015-2019 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 9575678e..03b6b215 100644
--- a/discord/reaction.py
+++ b/discord/reaction.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 b611de3c..a1bd2c14 100644
--- a/discord/relationship.py
+++ b/discord/relationship.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 b8c2950b..217a86c8 100644
--- a/discord/role.py
+++ b/discord/role.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 0eb5c695..62639bab 100644
--- a/discord/shard.py
+++ b/discord/shard.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 5d23fe86..158d4039 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 982b785c..f20274f3 100644
--- a/discord/utils.py
+++ b/discord/utils.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 54aa6d8a..91480872 100644
--- a/discord/voice_client.py
+++ b/discord/voice_client.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 be71d733..68dd6531 100644
--- a/discord/webhook.py
+++ b/discord/webhook.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015-2017 Rapptz
+Copyright (c) 2015-2019 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 56ffc572..a1a11869 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -69,7 +69,7 @@ master_doc = 'index'
# General information about the project.
project = u'discord.py'
-copyright = u'2015-2017, Rapptz'
+copyright = u'2015-2019, 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/api.po b/docs/locale/ja/LC_MESSAGES/api.po
index d76d8550..2304903a 100644
--- a/docs/locale/ja/LC_MESSAGES/api.po
+++ b/docs/locale/ja/LC_MESSAGES/api.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/discord.po b/docs/locale/ja/LC_MESSAGES/discord.po
index c44358de..0db8255d 100644
--- a/docs/locale/ja/LC_MESSAGES/discord.po
+++ b/docs/locale/ja/LC_MESSAGES/discord.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/faq.po b/docs/locale/ja/LC_MESSAGES/faq.po
index d8eb2b55..d7b0d8fb 100644
--- a/docs/locale/ja/LC_MESSAGES/faq.po
+++ b/docs/locale/ja/LC_MESSAGES/faq.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/index.po b/docs/locale/ja/LC_MESSAGES/index.po
index 1562f627..f09e476b 100644
--- a/docs/locale/ja/LC_MESSAGES/index.po
+++ b/docs/locale/ja/LC_MESSAGES/index.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/intro.po b/docs/locale/ja/LC_MESSAGES/intro.po
index 5ee3d626..7ea72c4f 100644
--- a/docs/locale/ja/LC_MESSAGES/intro.po
+++ b/docs/locale/ja/LC_MESSAGES/intro.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/logging.po b/docs/locale/ja/LC_MESSAGES/logging.po
index 6faf14be..4f02958a 100644
--- a/docs/locale/ja/LC_MESSAGES/logging.po
+++ b/docs/locale/ja/LC_MESSAGES/logging.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/migrating.po b/docs/locale/ja/LC_MESSAGES/migrating.po
index ae8197fc..62f2e5fa 100644
--- a/docs/locale/ja/LC_MESSAGES/migrating.po
+++ b/docs/locale/ja/LC_MESSAGES/migrating.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/migrating_to_async.po b/docs/locale/ja/LC_MESSAGES/migrating_to_async.po
index bc8a6768..9e6dced9 100644
--- a/docs/locale/ja/LC_MESSAGES/migrating_to_async.po
+++ b/docs/locale/ja/LC_MESSAGES/migrating_to_async.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/quickstart.po b/docs/locale/ja/LC_MESSAGES/quickstart.po
index fa22a36d..557c475f 100644
--- a/docs/locale/ja/LC_MESSAGES/quickstart.po
+++ b/docs/locale/ja/LC_MESSAGES/quickstart.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/sphinx.po b/docs/locale/ja/LC_MESSAGES/sphinx.po
index 86e37aa3..18086d88 100644
--- a/docs/locale/ja/LC_MESSAGES/sphinx.po
+++ b/docs/locale/ja/LC_MESSAGES/sphinx.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
diff --git a/docs/locale/ja/LC_MESSAGES/whats_new.po b/docs/locale/ja/LC_MESSAGES/whats_new.po
index b094a1f7..7916696f 100644
--- a/docs/locale/ja/LC_MESSAGES/whats_new.po
+++ b/docs/locale/ja/LC_MESSAGES/whats_new.po
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2015-2017, Rapptz
+# Copyright (C) 2015-2019, Rapptz
# This file is distributed under the same license as the discord.py package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#