diff --git a/README.md b/README.md index 6d1413f..b71d8ac 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![PyPI](https://img.shields.io/pypi/v/disco-py.svg)](https://pypi.python.org/pypi/disco-py/) [![TravisCI](https://img.shields.io/travis/b1naryth1ef/disco.svg)](https://travis-ci.org/b1naryth1ef/disco/) -Disco is an extensive and extendable Python 2.x/3.x library for the [Discord API](https://discordapp.com/developers/docs/intro). Join the Official channel and chat [here](https://discord.gg/WMzzPec). Disco boasts the following major features: +Disco is an extensive and extendable Python 2.x/3.x library for the [Discord API](https://discordapp.com/developers/docs/intro). Disco boasts the following major features: - Expressive, functional interface that gets out of the way - Built for high-performance and efficiency diff --git a/disco/bot/bot.py b/disco/bot/bot.py index cba656b..d354e29 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -313,10 +313,9 @@ class Bot(LoggingClass): if msg.guild: member = msg.guild.get_member(self.client.state.me) if member: - # If nickname is set, filter both the normal and nick mentions - if member.nick: - content = content.replace(member.mention, '', 1) + # Filter both the normal and nick mentions content = content.replace(member.user.mention, '', 1) + content = content.replace(member.user.mention_nickname, '', 1) else: content = content.replace(self.client.state.me.mention, '', 1) elif mention_everyone: diff --git a/disco/types/user.py b/disco/types/user.py index 30c432c..214d4ff 100644 --- a/disco/types/user.py +++ b/disco/types/user.py @@ -52,6 +52,10 @@ class User(SlottedModel, with_equality('id'), with_hash('id')): def mention(self): return '<@{}>'.format(self.id) + @property + def mention_nickname(self): + return '<@!{}>'.format(self.id) + def open_dm(self): return self.client.api.users_me_dms_create(self.id) diff --git a/disco/util/serializer.py b/disco/util/serializer.py index de6264a..f842ecc 100644 --- a/disco/util/serializer.py +++ b/disco/util/serializer.py @@ -21,8 +21,8 @@ class Serializer(object): @staticmethod def yaml(): - from yaml import load, dump - return (load, dump) + from yaml import full_load, dump + return (full_load, dump) @staticmethod def pickle(): diff --git a/setup.py b/setup.py index e80a54a..f91314c 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ setup( license='MIT', description='A Python library for Discord', long_description=readme, + long_description_content_type="text/markdown", include_package_data=True, install_requires=requirements, extras_require=extras_require,