Skip to content
Snippets Groups Projects
Commit 38409be2 authored by Augie Fackler's avatar Augie Fackler
Browse files

stringutil: have buildrepr delegate to pprint for unknown types

This stabilizes some revset reprs across Python 2 and 3.

Differential Revision: https://phab.mercurial-scm.org/D4244
parent 2aebe138
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@
elif callable(r):
return r()
else:
return pycompat.byterepr(r)
return pprint(r)
def binary(s):
"""return true if a string is binary data"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment