Skip to content

Commit

Permalink
fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jokjr committed Feb 1, 2022
1 parent 4e959fc commit 5964a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jinjalint.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ def check_val(doc, pos_stack, error=False):
elif isinstance(v, ruamel.yaml.events.StreamEndEvent):
break
else:
output(pos_stack, f'\nBUG: please report this! unhandled YAML type {repr(v)}') #, file=os.stderr)
output(pos_stack, f'\nBUG: please report this! unhandled YAML type {repr(v)}') #, file=sys.stderr)
error = True
return error

Expand Down

0 comments on commit 5964a9f

Please sign in to comment.