From patchwork Thu Nov 9 13:14:53 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D1316: py3: handle keyword arguments in hgext/graphlog.py From: phabricator X-Patchwork-Id: 25437 Message-Id: <4c51a4e171a6c16a1d02c1f520a525d8@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Thu, 9 Nov 2017 13:14:53 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG0c9ba2ac60a8: py3: handle keyword arguments in hgext/graphlog.py (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D1316?vs=3279&id=3360 REVISION DETAIL https://phab.mercurial-scm.org/D1316 AFFECTED FILES hgext/graphlog.py CHANGE DETAILS To: pulkit, #hg-reviewers, yuja Cc: mercurial-devel diff --git a/hgext/graphlog.py b/hgext/graphlog.py --- a/hgext/graphlog.py +++ b/hgext/graphlog.py @@ -66,5 +66,5 @@ This is an alias to :hg:`log -G`. """ - opts['graph'] = True + opts[r'graph'] = True return commands.log(ui, repo, *pats, **opts)