comparison mercurial/templatekw.py @ 35143:6fe99a8e266d

py3: fix args handling for obsfate template Differential Revision: https://phab.mercurial-scm.org/D1536
author Pulkit Goyal <7895pulkit@gmail.com>
date Wed, 29 Nov 2017 04:41:48 +0530
parents 625d5ebce066
children c7b45db8f317
comparison
equal deleted inserted replaced
35142:3d6cac7e528c 35143:6fe99a8e266d
606 # 606 #
607 # This function will be replaced by templates fragments when we will have 607 # This function will be replaced by templates fragments when we will have
608 # the verbosity templatekw available. 608 # the verbosity templatekw available.
609 succsandmarkers = showsuccsandmarkers(**args) 609 succsandmarkers = showsuccsandmarkers(**args)
610 610
611 args = pycompat.byteskwargs(args)
611 ui = args['ui'] 612 ui = args['ui']
612 613
613 values = [] 614 values = []
614 615
615 for x in succsandmarkers: 616 for x in succsandmarkers: