diff options
author | Pavel Roskin <proski@gnu.org> | 2015-03-02 09:11:28 -0500 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2015-03-02 09:11:28 -0500 |
commit | 6eb3ef35956d0219a1fe41397776ff956642425b (patch) | |
tree | c4c5d50ea8126a96cd574f4ab55c13c2b9032d03 /pylint/testutils.py | |
parent | 7fe1eb848f1991b311b433b3b7ce0186b2f1ee50 (diff) | |
download | pylint-git-6eb3ef35956d0219a1fe41397776ff956642425b.tar.gz |
Fix the number of underscores in __implements__
Diffstat (limited to 'pylint/testutils.py')
-rw-r--r-- | pylint/testutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py index 2f9af4d10..2ea440d69 100644 --- a/pylint/testutils.py +++ b/pylint/testutils.py @@ -93,7 +93,7 @@ def get_tests_info(input_dir, msg_dir, prefix, suffix): class TestReporter(BaseReporter): """reporter storing plain text messages""" - __implements____ = IReporter + __implements__ = IReporter def __init__(self): # pylint: disable=super-init-not-called |