From patchwork Sat May 19 19:38:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D3590: py3: make sure we pass str to date.strftime() From: phabricator X-Patchwork-Id: 31711 Message-Id: <06b1acce9f425b220d51bf49ade242d9@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Sat, 19 May 2018 19:38:48 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG543b7b349b2c: py3: make sure we pass str to date.strftime() (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D3590?vs=8761&id=8795 REVISION DETAIL https://phab.mercurial-scm.org/D3590 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(opts['dateformat']) + return date.strftime(pycompat.sysstr(opts['dateformat'])) else: tmpl = opts.get('oldtemplate') or opts.get('template') tmpl = logcmdutil.maketemplater(ui, repo, tmpl)