Fix PEP 8 issues.

pull/23268/head
Matt Clay 7 years ago
parent 5a0b2fe3be
commit a6ca849643

@ -291,8 +291,7 @@ def ports_expand(ports):
if not isinstance(port, str):
ports_expanded.append((port,) * 2)
elif '-' in port:
ports_expanded.append(tuple(p.strip() for p in
port.split('-', 1)))
ports_expanded.append(tuple(p.strip() for p in port.split('-', 1)))
else:
ports_expanded.append((port.strip(),) * 2)

@ -10,6 +10,7 @@ REPLACEMENTS = [
('thismoduledoesnotexist', 'thismoduledoesnotexist_module'), # the default
]
@pytest.mark.parametrize("replacement", REPLACEMENTS, ids=lambda x: x[0])
def test_apache_identifier(replacement):
"test the correct replacement of an a2enmod name with an apache2ctl name"

Loading…
Cancel
Save