# HG changeset patch # User Augie Fackler # Date 1490561309 14400 # Node ID f3b151278655222f75d5b192fc3b928061e4551a # Parent 632e07e72a22428b6571866da3fd7e0778e80c05 revsetlang: fix _quote on int on python3 Thanks to Yuya for spotting the need. diff -r 632e07e72a22 -r f3b151278655 mercurial/revsetlang.py --- 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): '''