From 67882e5f19a3d318b100373f909aac4bca2ed1ab Mon Sep 17 00:00:00 2001 From: Anna Khmelnitsky Date: Fri, 17 Mar 2017 15:53:52 -0700 Subject: [PATCH] Fix copy-paste error in hacking checks N344 was shown as N343 Change-Id: Ia257c3a19751f6d84d33516fe58bfd83b33c15da --- neutron/hacking/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/hacking/checks.py b/neutron/hacking/checks.py index 1ff2068c45f..1db19ab02dd 100644 --- a/neutron/hacking/checks.py +++ b/neutron/hacking/checks.py @@ -369,7 +369,7 @@ def check_no_imports_from_tests(logical_line, filename, noqa): def check_python3_no_filter(logical_line): """N344 - Use list comprehension instead of filter(lambda).""" - msg = ("N343: Use list comprehension instead of " + msg = ("N344: Use list comprehension instead of " "filter(lambda obj: test(obj), data) on python3.") if filter_match.match(logical_line):