utils/[galaxyify-playbook,gen_module_docs].py: flake8 fixes

This commit is contained in:
Thomas Woerner
2019-07-24 18:27:41 +02:00
parent 4cd4f2cf71
commit 62097ee368
2 changed files with 39 additions and 37 deletions

View File

@@ -1,11 +1,11 @@
import os
import sys
import re
def galaxify_playbook(playbook_in):
p1 = re.compile('(ipa.*:)$')
p2 = re.compile('(name:) (ipa.*)$')
lines = [ ]
lines = []
with open(playbook_in) as in_f:
changed = False
@@ -16,7 +16,7 @@ def galaxify_playbook(playbook_in):
if stripped.startswith("- name:") or \
stripped.startswith("- block:"):
changeable = True
elif stripped in [ "set_fact:", "vars:" ]:
elif stripped in ["set_fact:", "vars:"]:
changeable = False
include_role = False
elif stripped.startswith("include_role:"):
@@ -24,8 +24,8 @@ def galaxify_playbook(playbook_in):
elif include_role and stripped.startswith("name:"):
line = p2.sub(r'\1 freeipa.ansible_freeipa.\2', line)
changed = True
elif changeable and \
not stripped.startswith("freeipa.ansible_freeipa."):
elif changeable and not stripped.startswith(
"freeipa.ansible_freeipa."):
line = p1.sub(r'freeipa.ansible_freeipa.\1', line)
changed = True
@@ -36,4 +36,5 @@ def galaxify_playbook(playbook_in):
for line in lines:
out_f.write(line)
galaxify_playbook(sys.argv[1])