revsetlang: fix _quote on int on python3
Thanks to Yuya for spotting the need.
--- a/mercurial/revsetlang.py Sun Mar 26 20:58:54 2017 -0700
+++ b/mercurial/revsetlang.py Sun Mar 26 16:48:29 2017 -0400
@@ -586,7 +586,7 @@
>>> _quote(1)
"'1'"
"""
- return "'%s'" % util.escapestr('%s' % s)
+ return "'%s'" % util.escapestr(pycompat.bytestr(s))
def formatspec(expr, *args):
'''