From 53d7515f8c953fd36f8d8268675b9e1f8e3cf4a0 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 26 Jan 2019 19:25:46 -0300 Subject: [PATCH] all: update copyright year --- litecord/__init__.py | 2 +- litecord/auth.py | 2 +- litecord/blueprints/__init__.py | 2 +- litecord/blueprints/attachments.py | 2 +- litecord/blueprints/auth.py | 2 +- litecord/blueprints/channel/__init__.py | 2 +- litecord/blueprints/channel/dm_checks.py | 2 +- litecord/blueprints/channel/messages.py | 2 +- litecord/blueprints/channel/pins.py | 2 +- litecord/blueprints/channel/reactions.py | 2 +- litecord/blueprints/channels.py | 2 +- litecord/blueprints/checks.py | 2 +- litecord/blueprints/dms.py | 2 +- litecord/blueprints/gateway.py | 2 +- litecord/blueprints/guild/__init__.py | 2 +- litecord/blueprints/guild/channels.py | 2 +- litecord/blueprints/guild/emoji.py | 2 +- litecord/blueprints/guild/members.py | 2 +- litecord/blueprints/guild/mod.py | 2 +- litecord/blueprints/guild/roles.py | 2 +- litecord/blueprints/guilds.py | 2 +- litecord/blueprints/icons.py | 2 +- litecord/blueprints/invites.py | 2 +- litecord/blueprints/nodeinfo.py | 2 +- litecord/blueprints/relationships.py | 2 +- litecord/blueprints/science.py | 2 +- litecord/blueprints/static.py | 2 +- litecord/blueprints/user/__init__.py | 2 +- litecord/blueprints/user/billing.py | 2 +- litecord/blueprints/user/billing_job.py | 2 +- litecord/blueprints/user/fake_store.py | 2 +- litecord/blueprints/user/settings.py | 2 +- litecord/blueprints/users.py | 2 +- litecord/blueprints/voice.py | 2 +- litecord/blueprints/webhooks.py | 2 +- litecord/dispatcher.py | 2 +- litecord/embed/__init__.py | 2 +- litecord/embed/sanitizer.py | 2 +- litecord/embed/schemas.py | 2 +- litecord/enums.py | 2 +- litecord/errors.py | 2 +- litecord/gateway/__init__.py | 2 +- litecord/gateway/errors.py | 2 +- litecord/gateway/gateway.py | 2 +- litecord/gateway/opcodes.py | 2 +- litecord/gateway/state.py | 2 +- litecord/gateway/state_manager.py | 2 +- litecord/gateway/websocket.py | 2 +- litecord/images.py | 2 +- litecord/jobs.py | 2 +- litecord/permissions.py | 2 +- litecord/presence.py | 2 +- litecord/pubsub/__init__.py | 2 +- litecord/pubsub/channel.py | 2 +- litecord/pubsub/dispatcher.py | 2 +- litecord/pubsub/friend.py | 2 +- litecord/pubsub/guild.py | 2 +- litecord/pubsub/lazy_guild.py | 2 +- litecord/pubsub/member.py | 2 +- litecord/pubsub/user.py | 2 +- litecord/ratelimits/bucket.py | 2 +- litecord/ratelimits/handler.py | 2 +- litecord/ratelimits/main.py | 2 +- litecord/schemas.py | 2 +- litecord/snowflake.py | 2 +- litecord/storage.py | 2 +- litecord/system_messages.py | 2 +- litecord/types.py | 2 +- litecord/user_storage.py | 2 +- litecord/utils.py | 2 +- manage.py | 2 +- manage/__init__.py | 2 +- manage/cmd/invites.py | 2 +- manage/cmd/migration/__init__.py | 2 +- manage/cmd/migration/command.py | 2 +- manage/cmd/tests.py | 2 +- manage/cmd/users.py | 2 +- manage/main.py | 2 +- run.py | 2 +- tests/common.py | 2 +- tests/conftest.py | 2 +- tests/credentials.py | 2 +- tests/test_embeds.py | 2 +- tests/test_gateway.py | 2 +- tests/test_main.py | 2 +- tests/test_no_tracking.py | 2 +- tests/test_ratelimits.py | 2 +- tests/test_user.py | 2 +- tests/test_websocket.py | 2 +- 89 files changed, 89 insertions(+), 89 deletions(-) diff --git a/litecord/__init__.py b/litecord/__init__.py index 62dfb89..ce49370 100644 --- a/litecord/__init__.py +++ b/litecord/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/auth.py b/litecord/auth.py index ac0e8bb..8294d7e 100644 --- a/litecord/auth.py +++ b/litecord/auth.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/__init__.py b/litecord/blueprints/__init__.py index f43f9ca..a22b5b1 100644 --- a/litecord/blueprints/__init__.py +++ b/litecord/blueprints/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/attachments.py b/litecord/blueprints/attachments.py index 8ac7676..9d41755 100644 --- a/litecord/blueprints/attachments.py +++ b/litecord/blueprints/attachments.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/auth.py b/litecord/blueprints/auth.py index f61a801..e779e27 100644 --- a/litecord/blueprints/auth.py +++ b/litecord/blueprints/auth.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channel/__init__.py b/litecord/blueprints/channel/__init__.py index c5c0ddb..fac85e9 100644 --- a/litecord/blueprints/channel/__init__.py +++ b/litecord/blueprints/channel/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channel/dm_checks.py b/litecord/blueprints/channel/dm_checks.py index ade19f7..743815d 100644 --- a/litecord/blueprints/channel/dm_checks.py +++ b/litecord/blueprints/channel/dm_checks.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channel/messages.py b/litecord/blueprints/channel/messages.py index 6d30c05..a6f5196 100644 --- a/litecord/blueprints/channel/messages.py +++ b/litecord/blueprints/channel/messages.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channel/pins.py b/litecord/blueprints/channel/pins.py index 46a6ecd..f5245d7 100644 --- a/litecord/blueprints/channel/pins.py +++ b/litecord/blueprints/channel/pins.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channel/reactions.py b/litecord/blueprints/channel/reactions.py index c7b1efe..7ede137 100644 --- a/litecord/blueprints/channel/reactions.py +++ b/litecord/blueprints/channel/reactions.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/channels.py b/litecord/blueprints/channels.py index 4db72d9..585d6a6 100644 --- a/litecord/blueprints/channels.py +++ b/litecord/blueprints/channels.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/checks.py b/litecord/blueprints/checks.py index e61dfc4..9c9253a 100644 --- a/litecord/blueprints/checks.py +++ b/litecord/blueprints/checks.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/dms.py b/litecord/blueprints/dms.py index 078bb87..149ff1a 100644 --- a/litecord/blueprints/dms.py +++ b/litecord/blueprints/dms.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/gateway.py b/litecord/blueprints/gateway.py index 9434605..562040b 100644 --- a/litecord/blueprints/gateway.py +++ b/litecord/blueprints/gateway.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/__init__.py b/litecord/blueprints/guild/__init__.py index 73d65aa..7e37ef6 100644 --- a/litecord/blueprints/guild/__init__.py +++ b/litecord/blueprints/guild/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/channels.py b/litecord/blueprints/guild/channels.py index 43c3e7e..1e72c59 100644 --- a/litecord/blueprints/guild/channels.py +++ b/litecord/blueprints/guild/channels.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/emoji.py b/litecord/blueprints/guild/emoji.py index f92f73e..85aa7e1 100644 --- a/litecord/blueprints/guild/emoji.py +++ b/litecord/blueprints/guild/emoji.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/members.py b/litecord/blueprints/guild/members.py index c396d23..8dd9204 100644 --- a/litecord/blueprints/guild/members.py +++ b/litecord/blueprints/guild/members.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/mod.py b/litecord/blueprints/guild/mod.py index 97978dc..cfbe003 100644 --- a/litecord/blueprints/guild/mod.py +++ b/litecord/blueprints/guild/mod.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guild/roles.py b/litecord/blueprints/guild/roles.py index c9007cc..a5373ce 100644 --- a/litecord/blueprints/guild/roles.py +++ b/litecord/blueprints/guild/roles.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/guilds.py b/litecord/blueprints/guilds.py index b2b5b5f..d34d5c5 100644 --- a/litecord/blueprints/guilds.py +++ b/litecord/blueprints/guilds.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/icons.py b/litecord/blueprints/icons.py index 6f3cb34..86662b2 100644 --- a/litecord/blueprints/icons.py +++ b/litecord/blueprints/icons.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/invites.py b/litecord/blueprints/invites.py index 47967b5..70a23ba 100644 --- a/litecord/blueprints/invites.py +++ b/litecord/blueprints/invites.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/nodeinfo.py b/litecord/blueprints/nodeinfo.py index ac9e891..d2d60df 100644 --- a/litecord/blueprints/nodeinfo.py +++ b/litecord/blueprints/nodeinfo.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/relationships.py b/litecord/blueprints/relationships.py index 760d44a..672ab89 100644 --- a/litecord/blueprints/relationships.py +++ b/litecord/blueprints/relationships.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/science.py b/litecord/blueprints/science.py index faff229..80ffe15 100644 --- a/litecord/blueprints/science.py +++ b/litecord/blueprints/science.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/static.py b/litecord/blueprints/static.py index 6b5777c..5ce08df 100644 --- a/litecord/blueprints/static.py +++ b/litecord/blueprints/static.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/user/__init__.py b/litecord/blueprints/user/__init__.py index 7993aac..9e7b884 100644 --- a/litecord/blueprints/user/__init__.py +++ b/litecord/blueprints/user/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/user/billing.py b/litecord/blueprints/user/billing.py index 9682851..eb4de46 100644 --- a/litecord/blueprints/user/billing.py +++ b/litecord/blueprints/user/billing.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/user/billing_job.py b/litecord/blueprints/user/billing_job.py index df004d3..b5e9f7f 100644 --- a/litecord/blueprints/user/billing_job.py +++ b/litecord/blueprints/user/billing_job.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/user/fake_store.py b/litecord/blueprints/user/fake_store.py index ba2834b..68c3dff 100644 --- a/litecord/blueprints/user/fake_store.py +++ b/litecord/blueprints/user/fake_store.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/user/settings.py b/litecord/blueprints/user/settings.py index 2f8c71c..2cc73dc 100644 --- a/litecord/blueprints/user/settings.py +++ b/litecord/blueprints/user/settings.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/users.py b/litecord/blueprints/users.py index 60bbbe5..6b4b542 100644 --- a/litecord/blueprints/users.py +++ b/litecord/blueprints/users.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/voice.py b/litecord/blueprints/voice.py index 7f921ae..85e4121 100644 --- a/litecord/blueprints/voice.py +++ b/litecord/blueprints/voice.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/blueprints/webhooks.py b/litecord/blueprints/webhooks.py index 2b6ab5a..06253aa 100644 --- a/litecord/blueprints/webhooks.py +++ b/litecord/blueprints/webhooks.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/dispatcher.py b/litecord/dispatcher.py index 1891e75..59e19a3 100644 --- a/litecord/dispatcher.py +++ b/litecord/dispatcher.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/embed/__init__.py b/litecord/embed/__init__.py index 4931b0a..41eb159 100644 --- a/litecord/embed/__init__.py +++ b/litecord/embed/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/embed/sanitizer.py b/litecord/embed/sanitizer.py index 1f8463f..9a59894 100644 --- a/litecord/embed/sanitizer.py +++ b/litecord/embed/sanitizer.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/embed/schemas.py b/litecord/embed/schemas.py index 25120c6..2e17bea 100644 --- a/litecord/embed/schemas.py +++ b/litecord/embed/schemas.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/enums.py b/litecord/enums.py index 6ea4da3..60037d6 100644 --- a/litecord/enums.py +++ b/litecord/enums.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/errors.py b/litecord/errors.py index 8a27c43..e7c9826 100644 --- a/litecord/errors.py +++ b/litecord/errors.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/__init__.py b/litecord/gateway/__init__.py index a7990c6..3b62d06 100644 --- a/litecord/gateway/__init__.py +++ b/litecord/gateway/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/errors.py b/litecord/gateway/errors.py index dc3bdc7..569bc88 100644 --- a/litecord/gateway/errors.py +++ b/litecord/gateway/errors.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/gateway.py b/litecord/gateway/gateway.py index 731fdc5..d6ec58a 100644 --- a/litecord/gateway/gateway.py +++ b/litecord/gateway/gateway.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/opcodes.py b/litecord/gateway/opcodes.py index 6683771..bbcdd55 100644 --- a/litecord/gateway/opcodes.py +++ b/litecord/gateway/opcodes.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/state.py b/litecord/gateway/state.py index 3add609..cadd3af 100644 --- a/litecord/gateway/state.py +++ b/litecord/gateway/state.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/state_manager.py b/litecord/gateway/state_manager.py index d2ad738..3e995ee 100644 --- a/litecord/gateway/state_manager.py +++ b/litecord/gateway/state_manager.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/gateway/websocket.py b/litecord/gateway/websocket.py index cd4d5f8..9dc402c 100644 --- a/litecord/gateway/websocket.py +++ b/litecord/gateway/websocket.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/images.py b/litecord/images.py index d1395aa..bf3434c 100644 --- a/litecord/images.py +++ b/litecord/images.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/jobs.py b/litecord/jobs.py index b0af94b..55b8f1d 100644 --- a/litecord/jobs.py +++ b/litecord/jobs.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/permissions.py b/litecord/permissions.py index 686a405..589b976 100644 --- a/litecord/permissions.py +++ b/litecord/permissions.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/presence.py b/litecord/presence.py index 332c191..9b53c4a 100644 --- a/litecord/presence.py +++ b/litecord/presence.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/__init__.py b/litecord/pubsub/__init__.py index 71757ed..a349982 100644 --- a/litecord/pubsub/__init__.py +++ b/litecord/pubsub/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/channel.py b/litecord/pubsub/channel.py index 41dae3a..decf340 100644 --- a/litecord/pubsub/channel.py +++ b/litecord/pubsub/channel.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/dispatcher.py b/litecord/pubsub/dispatcher.py index 9cb4394..4b60019 100644 --- a/litecord/pubsub/dispatcher.py +++ b/litecord/pubsub/dispatcher.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/friend.py b/litecord/pubsub/friend.py index 804fe7a..2717f6d 100644 --- a/litecord/pubsub/friend.py +++ b/litecord/pubsub/friend.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/guild.py b/litecord/pubsub/guild.py index e0b2bd3..5a419e2 100644 --- a/litecord/pubsub/guild.py +++ b/litecord/pubsub/guild.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/lazy_guild.py b/litecord/pubsub/lazy_guild.py index afca7a0..dae0270 100644 --- a/litecord/pubsub/lazy_guild.py +++ b/litecord/pubsub/lazy_guild.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/member.py b/litecord/pubsub/member.py index 744300e..5302a17 100644 --- a/litecord/pubsub/member.py +++ b/litecord/pubsub/member.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/pubsub/user.py b/litecord/pubsub/user.py index 2e24fb5..94bb489 100644 --- a/litecord/pubsub/user.py +++ b/litecord/pubsub/user.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/ratelimits/bucket.py b/litecord/ratelimits/bucket.py index 253fe75..929e9f6 100644 --- a/litecord/ratelimits/bucket.py +++ b/litecord/ratelimits/bucket.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/ratelimits/handler.py b/litecord/ratelimits/handler.py index 2cc84de..f5bfa52 100644 --- a/litecord/ratelimits/handler.py +++ b/litecord/ratelimits/handler.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/ratelimits/main.py b/litecord/ratelimits/main.py index 2cc634f..0662e46 100644 --- a/litecord/ratelimits/main.py +++ b/litecord/ratelimits/main.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/schemas.py b/litecord/schemas.py index d21ef54..a6a6bcf 100644 --- a/litecord/schemas.py +++ b/litecord/schemas.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/snowflake.py b/litecord/snowflake.py index 174ad80..d121f7a 100644 --- a/litecord/snowflake.py +++ b/litecord/snowflake.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/storage.py b/litecord/storage.py index fe4f317..c41f0b2 100644 --- a/litecord/storage.py +++ b/litecord/storage.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/system_messages.py b/litecord/system_messages.py index cab63c2..33a10a0 100644 --- a/litecord/system_messages.py +++ b/litecord/system_messages.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/types.py b/litecord/types.py index 5b527d7..38888e9 100644 --- a/litecord/types.py +++ b/litecord/types.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/user_storage.py b/litecord/user_storage.py index 5ff4b34..1f0e2bd 100644 --- a/litecord/user_storage.py +++ b/litecord/user_storage.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/litecord/utils.py b/litecord/utils.py index 2010433..5647a37 100644 --- a/litecord/utils.py +++ b/litecord/utils.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage.py b/manage.py index 1e2d50f..ab61ec2 100755 --- a/manage.py +++ b/manage.py @@ -2,7 +2,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/__init__.py b/manage/__init__.py index 62dfb89..ce49370 100644 --- a/manage/__init__.py +++ b/manage/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/cmd/invites.py b/manage/cmd/invites.py index 4c6e101..3fc716a 100644 --- a/manage/cmd/invites.py +++ b/manage/cmd/invites.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/cmd/migration/__init__.py b/manage/cmd/migration/__init__.py index ac9846e..e2363a2 100644 --- a/manage/cmd/migration/__init__.py +++ b/manage/cmd/migration/__init__.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/cmd/migration/command.py b/manage/cmd/migration/command.py index 674f75e..845bec2 100644 --- a/manage/cmd/migration/command.py +++ b/manage/cmd/migration/command.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/cmd/tests.py b/manage/cmd/tests.py index ff0e942..a1b5f53 100644 --- a/manage/cmd/tests.py +++ b/manage/cmd/tests.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/cmd/users.py b/manage/cmd/users.py index 1e2c6d3..f8f4ee8 100644 --- a/manage/cmd/users.py +++ b/manage/cmd/users.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/manage/main.py b/manage/main.py index 94b3bb9..5402c67 100644 --- a/manage/main.py +++ b/manage/main.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/run.py b/run.py index adb01f4..8a361af 100644 --- a/run.py +++ b/run.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/common.py b/tests/common.py index e2a1411..a7d5cbe 100644 --- a/tests/common.py +++ b/tests/common.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/conftest.py b/tests/conftest.py index 9f1ceb5..d77c012 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/credentials.py b/tests/credentials.py index 4f88acc..0d16f4c 100644 --- a/tests/credentials.py +++ b/tests/credentials.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_embeds.py b/tests/test_embeds.py index 876037a..05f597c 100644 --- a/tests/test_embeds.py +++ b/tests/test_embeds.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gateway.py b/tests/test_gateway.py index 54b3e82..57b787d 100644 --- a/tests/test_gateway.py +++ b/tests/test_gateway.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_main.py b/tests/test_main.py index c417b32..3dc7a6a 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_no_tracking.py b/tests/test_no_tracking.py index e05f392..8ac1af2 100644 --- a/tests/test_no_tracking.py +++ b/tests/test_no_tracking.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_ratelimits.py b/tests/test_ratelimits.py index 7434a3f..170ed2f 100644 --- a/tests/test_ratelimits.py +++ b/tests/test_ratelimits.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_user.py b/tests/test_user.py index 1901db3..3e00c40 100644 --- a/tests/test_user.py +++ b/tests/test_user.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_websocket.py b/tests/test_websocket.py index af80060..b251ad9 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -1,7 +1,7 @@ """ Litecord -Copyright (C) 2018 Luna Mendes +Copyright (C) 2018-2019 Luna Mendes This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by