In pylint/collector.py#26 this expression is used:
msg_data = self._message_store.check_message_id(msg_id)
But since pylint-dev/pylint#2077 was merged and then released, that method has been refactored to a different name: get_message_definition(). Hence now Prospector fails the pylint check with (only last part of the stacktrace attached):
File "venv/lib/python3.6/site-packages/prospector/tools/pylint/collector.py", line 26, in add_message
msg_data = self._message_store.check_message_id(msg_id)
AttributeError: 'MessagesStore' object has no attribute 'check_message_id'
Related package versions:
prospector==1.0
pylint==2.0.1
In pylint/collector.py#26 this expression is used:
But since pylint-dev/pylint#2077 was merged and then released, that method has been refactored to a different name:
get_message_definition(). Hence now Prospector fails the pylint check with (only last part of the stacktrace attached):Related package versions: