From dcbba2b121da1525feff162aca17a8cc4adf55d6 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 2 Oct 2015 10:01:00 -0700 Subject: Enforce all flake8 rules except E129 Bring ironic-python-agent in line with the other ironic projects. Stop ignoring all E12* errors except E129 Stop ignoring E711 Change-Id: Icb9bc198473d1b5e807c20869eb2af7f4d7ac360 --- ironic_python_agent/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ironic_python_agent/utils.py') diff --git a/ironic_python_agent/utils.py b/ironic_python_agent/utils.py index c6b6bad0..9b6eb48c 100644 --- a/ironic_python_agent/utils.py +++ b/ironic_python_agent/utils.py @@ -220,8 +220,8 @@ def parse_root_device_hints(): error_msg = ('No device can be found because the following hints: ' '"%(not_supported)s" are not supported by this version ' 'of IPA. Supported hints are: "%(supported)s"', - {'not_supported': ', '.join(not_supported), - 'supported': ', '.join(SUPPORTED_ROOT_DEVICE_HINTS)}) + {'not_supported': ', '.join(not_supported), + 'supported': ', '.join(SUPPORTED_ROOT_DEVICE_HINTS)}) raise errors.DeviceNotFound(error_msg) # Normalise the values -- cgit v1.2.1