Remove errant newline from generated policy file.
When running the post_process_mac_perms script
an unneeded newline is appended to modified
mac_permissions.xml file. Use sys.stdout.write
instead which avoids any formatting when printing.
Change-Id: Ib662dab1566299467371389dc236619aec40f5ac
Signed-off-by: rpcraig <rpcraig@tycho.ncsc.mil>
diff --git a/tools/post_process_mac_perms b/tools/post_process_mac_perms
index 47f43a0..25893ed 100755
--- a/tools/post_process_mac_perms
+++ b/tools/post_process_mac_perms
@@ -86,7 +86,7 @@
# Inline replace with new policy stanzas
for line in fileinput.input(args.policy, inplace=True):
- print line.replace('</policy>', mac_perms_string)
+ sys.stdout.write(line.replace('</policy>', mac_perms_string))
def main(argv):
parser = argparse.ArgumentParser(description=__doc__)