Browse Source

Deprecate Message.create_reaction in favor of Message.add_reaction

This naming scheme was garbage and always tripped me up. In favor of
having a more intuitive (and less _technically_ correct) interface,
we'll swap the name up.
pull/27/head
Andrei 8 years ago
parent
commit
a52ab456b1
  1. 7
      disco/types/message.py
  2. 8
      disco/util/logging.py

7
disco/types/message.py

@ -1,5 +1,6 @@
import re import re
import six import six
import warnings
import functools import functools
import unicodedata import unicodedata
@ -315,6 +316,12 @@ class Message(SlottedModel):
) )
def create_reaction(self, emoji): def create_reaction(self, emoji):
warnings.warn(
'Message.create_reaction will be deprecated soon, use Message.add_reaction',
DeprecationWarning)
return self.add_reaction(emoji)
def add_reaction(self, emoji):
if isinstance(emoji, Emoji): if isinstance(emoji, Emoji):
emoji = emoji.to_string() emoji = emoji.to_string()
self.client.api.channels_messages_reactions_create( self.client.api.channels_messages_reactions_create(

8
disco/util/logging.py

@ -1,5 +1,6 @@
from __future__ import absolute_import from __future__ import absolute_import
import warnings
import logging import logging
@ -13,7 +14,14 @@ LOG_FORMAT = '[%(levelname)s] %(asctime)s - %(name)s:%(lineno)d - %(message)s'
def setup_logging(**kwargs): def setup_logging(**kwargs):
kwargs.setdefault('format', LOG_FORMAT) kwargs.setdefault('format', LOG_FORMAT)
# Setup warnings module correctly
warnings.simplefilter('always', DeprecationWarning)
logging.captureWarnings(True)
# Pass through our basic configuration
logging.basicConfig(**kwargs) logging.basicConfig(**kwargs)
# Override some noisey loggers
for logger, level in LEVEL_OVERRIDES.items(): for logger, level in LEVEL_OVERRIDES.items():
logging.getLogger(logger).setLevel(level) logging.getLogger(logger).setLevel(level)

Loading…
Cancel
Save