aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-01-04 22:28:29 -0500
committerRapptz <[email protected]>2016-01-04 22:28:29 -0500
commitdb4cc791dd45c6665767d31f219e6e9285a94fb6 (patch)
treec074ccbf301a4e593fe39020afe99250b5c756f3
parentInitial implementation of commands extension module. (diff)
downloaddiscord.py-db4cc791dd45c6665767d31f219e6e9285a94fb6.tar.xz
discord.py-db4cc791dd45c6665767d31f219e6e9285a94fb6.zip
Update license of files to 2016.
-rw-r--r--LICENSE2
-rw-r--r--discord/__init__.py4
-rw-r--r--discord/channel.py2
-rw-r--r--discord/client.py2
-rw-r--r--discord/colour.py2
-rw-r--r--discord/endpoints.py2
-rw-r--r--discord/enums.py2
-rw-r--r--discord/errors.py2
-rw-r--r--discord/game.py2
-rw-r--r--discord/invite.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/role.py2
-rw-r--r--discord/server.py2
-rw-r--r--discord/state.py2
-rw-r--r--discord/user.py2
-rw-r--r--discord/utils.py2
-rw-r--r--discord/voice_client.py2
22 files changed, 23 insertions, 23 deletions
diff --git a/LICENSE b/LICENSE
index e91fdae8..1d9a5d0b 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 618d568a..17e640b0 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 Rapptz
+:copyright: (c) 2015-2016 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 Rapptz'
+__copyright__ = 'Copyright 2015-2016 Rapptz'
__version__ = '0.10.0-alpha'
from .client import Client
diff --git a/discord/channel.py b/discord/channel.py
index b77afc59..cb6425ec 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -2,7 +2,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 bbad5ee4..45a69fea 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 ae6bab87..37346e89 100644
--- a/discord/colour.py
+++ b/discord/colour.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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/endpoints.py b/discord/endpoints.py
index d3e7f197..0ef0efa9 100644
--- a/discord/endpoints.py
+++ b/discord/endpoints.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 0d2d9390..60db2ab8 100644
--- a/discord/enums.py
+++ b/discord/enums.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 e943ee13..3569aae0 100644
--- a/discord/errors.py
+++ b/discord/errors.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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/game.py b/discord/game.py
index 266ece57..0408d19b 100644
--- a/discord/game.py
+++ b/discord/game.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 d28d80c4..b0fedccf 100644
--- a/discord/invite.py
+++ b/discord/invite.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 b8b047d3..2248e3d5 100644
--- a/discord/member.py
+++ b/discord/member.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 306e7c47..a610bd36 100644
--- a/discord/message.py
+++ b/discord/message.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 f6f641d5..da40d44c 100644
--- a/discord/mixins.py
+++ b/discord/mixins.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 ebf28f0f..096d240c 100644
--- a/discord/object.py
+++ b/discord/object.py
@@ -2,7 +2,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 10357ae2..51bb6a0b 100644
--- a/discord/opus.py
+++ b/discord/opus.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 48e08c48..ce50abfe 100644
--- a/discord/permissions.py
+++ b/discord/permissions.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 7b4c1d5e..65d1e073 100644
--- a/discord/role.py
+++ b/discord/role.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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/server.py b/discord/server.py
index cb3d9237..2ef82832 100644
--- a/discord/server.py
+++ b/discord/server.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 87d381aa..8b6fc0c4 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 85e43ba4..1e6eecae 100644
--- a/discord/user.py
+++ b/discord/user.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 e74c2e99..169bf1b1 100644
--- a/discord/utils.py
+++ b/discord/utils.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 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 da8eff3b..daa65597 100644
--- a/discord/voice_client.py
+++ b/discord/voice_client.py
@@ -3,7 +3,7 @@
"""
The MIT License (MIT)
-Copyright (c) 2015 Rapptz
+Copyright (c) 2015-2016 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),