diff -r 4de15c54e59f -r c6061cadb400 hgext/convert/convcmd.py --- a/hgext/convert/convcmd.py Thu Feb 08 23:27:24 2018 +0530 +++ b/hgext/convert/convcmd.py Thu Feb 15 17:18:26 2018 +0100 @@ -19,6 +19,7 @@ scmutil, util, ) +from mercurial.utils import dateutil from . import ( bzr, @@ -355,7 +356,7 @@ dates = {} def getdate(n): if n not in dates: - dates[n] = util.parsedate(self.commitcache[n].date) + dates[n] = dateutil.parsedate(self.commitcache[n].date) return dates[n] def picknext(nodes):