From patchwork Tue May 22 11:14:44 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D3642: py3: use encoding.strfromlocal() instead of pycompat.sysstr() From: phabricator X-Patchwork-Id: 31807 Message-Id: <41a2ab88e9272277bfc7a2f63e868aec@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Tue, 22 May 2018 11:14:44 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGd6d939a3676f: py3: use encoding.strfromlocal() instead of pycompat.sysstr() (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D3642?vs=8864&id=8865 REVISION DETAIL https://phab.mercurial-scm.org/D3642 AFFECTED FILES hgext/churn.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/churn.py b/hgext/churn.py --- a/hgext/churn.py +++ b/hgext/churn.py @@ -52,7 +52,7 @@ def getkey(ctx): t, tz = ctx.date() date = datetime.datetime(*time.gmtime(float(t) - tz)[:6]) - return date.strftime(pycompat.sysstr(opts['dateformat'])) + return date.strftime(encoding.strfromlocal(opts['dateformat'])) else: tmpl = opts.get('oldtemplate') or opts.get('template') tmpl = logcmdutil.maketemplater(ui, repo, tmpl)