##// END OF EJS Templates
revsetlang: fix _quote on int on python3...
Augie Fackler -
r31636:f3b15127 default
parent child Browse files
Show More
@@ -586,7 +586,7 b' def _quote(s):'
586 >>> _quote(1)
586 >>> _quote(1)
587 "'1'"
587 "'1'"
588 """
588 """
589 return "'%s'" % util.escapestr('%s' % s)
589 return "'%s'" % util.escapestr(pycompat.bytestr(s))
590
590
591 def formatspec(expr, *args):
591 def formatspec(expr, *args):
592 '''
592 '''
General Comments 0
You need to be logged in to leave comments. Login now