Skip to content

Commit

Permalink
Reverted string formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
logicalzero committed Nov 2, 2023
1 parent 4550503 commit c4e5d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebmlite/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def pprint(el: core.Element,
out.write(" <{}>".format(binary_codec.NAME))
binary_codec.encode(el.value, offset=el.offset, indent=indent, stream=out)
else:
out.write(" {!r} ".format(el.value))
out.write(" %r" % (el.value))
out.write("\n")

out.flush()
Expand Down

0 comments on commit c4e5d6a

Please sign in to comment.