Skip to content

Commit

Permalink
refparser: add missing newline after error message
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Acked-by: Stephen Smalley <stephen.smalley.work@gmail.com>
  • Loading branch information
cgzones authored and bachradsusi committed Jun 18, 2020
1 parent 5adc269 commit c40c4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/sepolgen/src/sepolgen/refparser.py
Expand Up @@ -1148,6 +1148,6 @@ def parse_file(f, module, spt=None):
status.step()

if len(failures):
o("failed to parse some headers: %s" % ", ".join(failures))
o("failed to parse some headers: %s\n" % ", ".join(failures))

return headers

0 comments on commit c40c4e4

Please sign in to comment.