##// END OF EJS Templates
py3: use stringutil.pprint() to print boolean values...
Pulkit Goyal -
r39764:ce4c2970 default
parent child Browse files
Show More
@@ -299,7 +299,9 class _annotatecontext(object):
299 if self.ui.debugflag:
299 if self.ui.debugflag:
300 self.ui.debug('fastannotate: %s: using fast path '
300 self.ui.debug('fastannotate: %s: using fast path '
301 '(resolved fctx: %s)\n'
301 '(resolved fctx: %s)\n'
302 % (self.path, util.safehasattr(revfctx, 'node')))
302 % (self.path,
303 stringutil.pprint(util.safehasattr(revfctx,
304 'node'))))
303 return self.annotatedirectly(revfctx, showpath, showlines)
305 return self.annotatedirectly(revfctx, showpath, showlines)
304
306
305 # resolve master
307 # resolve master
General Comments 0
You need to be logged in to leave comments. Login now