# HG changeset patch
# User Kyle Lippincott <spectral@google.com>
# Date 2020-04-06 22:19:09
# Node ID 1756f75873bfc7afdac415d73fe52cf2ff387cb3
# Parent  97e6d435ff7ee69e9b6a6739c36908f829b8118f

hgk: remove a "b" used on a kwargs expansion, the keys are strs

Differential Revision: https://phab.mercurial-scm.org/D8385

diff --git a/hgext/hgk.py b/hgext/hgk.py
--- a/hgext/hgk.py
+++ b/hgext/hgk.py
@@ -358,7 +358,7 @@ def revtree(ui, args, repo, full=b"tree"
 )
 def revlist(ui, repo, *revs, **opts):
     """print revisions"""
-    if opts[b'header']:
+    if opts['header']:
         full = b"commit"
     else:
         full = None