Skip to content
Snippets Groups Projects
Commit 858210b9 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix spacing for valid yaml.

parent fbeb08f8
Branches
Tags
No related merge requests found
...@@ -130,8 +130,8 @@ def main(): ...@@ -130,8 +130,8 @@ def main():
, file = open(out_filename, "w")) , file = open(out_filename, "w"))
for k, v in results.items(): for k, v in results.items():
print(" <dt>{}</dt><dd>{}</dd>".format(k, v), file = open(out_filename, "a")) print(" <dt>{}</dt><dd>{}</dd>".format(k, v), file = open(out_filename, "a"))
print(" </dl>", file = open(out_filename, "a")) print(" </dl>", file = open(out_filename, "a"))
if __name__ == '__main__': if __name__ == '__main__':
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment