comparison hgext/hgk.py @ 44676:1756f75873bf

hgk: remove a "b" used on a kwargs expansion, the keys are strs Differential Revision: https://phab.mercurial-scm.org/D8385
author Kyle Lippincott <spectral@google.com>
date Mon, 06 Apr 2020 15:19:09 -0700
parents be8552f25cab
children 89a2afe31e82
comparison
equal deleted inserted replaced
44675:97e6d435ff7e 44676:1756f75873bf
356 ], 356 ],
357 b'[OPTION]... REV...', 357 b'[OPTION]... REV...',
358 ) 358 )
359 def revlist(ui, repo, *revs, **opts): 359 def revlist(ui, repo, *revs, **opts):
360 """print revisions""" 360 """print revisions"""
361 if opts[b'header']: 361 if opts['header']:
362 full = b"commit" 362 full = b"commit"
363 else: 363 else:
364 full = None 364 full = None
365 copy = [x for x in revs] 365 copy = [x for x in revs]
366 revtree(ui, copy, repo, full, opts['max_count'], opts[r'parents']) 366 revtree(ui, copy, repo, full, opts['max_count'], opts[r'parents'])