We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 07137a6 + 506bc72 commit b4dca87Copy full SHA for b4dca87
2 files changed
pylint_plugin_utils/__init__.py
@@ -1,5 +1,8 @@
1
import sys
2
-from pylint.utils import UnknownMessage
+try:
3
+ from pylint.utils import UnknownMessage
4
+except ImportError:
5
+ from pylint.utils import UnknownMessageError as UnknownMessage
6
7
8
def get_class(module_name, kls):
setup.py
@@ -17,6 +17,7 @@
17
'Programming Language :: Python :: 2.7',
18
'Programming Language :: Python :: 3.3',
19
'Programming Language :: Python :: 3.4',
20
+ 'Programming Language :: Python :: 3.5',
21
)
22
23
setup(
0 commit comments