# HG changeset patch # User Manuel Jacob <me@manueljacob.de> # Date 1588550766 -7200 # Mon May 04 02:06:06 2020 +0200 # Node ID 3df79ea43104f402945f31c037ddb21d976fd850 # Parent de522c16260408108b06bc86b64b3b3bc787c632 py3: use pycompat.strkwargs diff --git a/hggit/__init__.py b/hggit/__init__.py --- a/hggit/__init__.py +++ b/hggit/__init__.py @@ -388,7 +388,8 @@ if opargs is None: opargs = {} pushop = exchange.pushoperation(repo, remote, force, revs, newbranch, - bookmarks, **opargs) + bookmarks, + **pycompat.strkwargs(opargs)) pushop.cgresult = repo.githandler.push(remote.path, revs, force) return pushop else: