diff -r f99d64e8a4e4 -r f0b6fbea00cf hgext/convert/cvsps.py --- a/hgext/convert/cvsps.py Thu Mar 22 21:19:31 2018 +0900 +++ b/hgext/convert/cvsps.py Thu Mar 22 21:56:20 2018 +0900 @@ -17,7 +17,10 @@ pycompat, util, ) -from mercurial.utils import dateutil +from mercurial.utils import ( + dateutil, + stringutil, +) pickle = util.pickle @@ -452,7 +455,8 @@ rcsmap[e.rcs.replace('/Attic/', '/')] = e.rcs if len(log) % 100 == 0: - ui.status(util.ellipsis('%d %s' % (len(log), e.file), 80)+'\n') + ui.status(stringutil.ellipsis('%d %s' % (len(log), e.file), 80) + + '\n') log.sort(key=lambda x: (x.rcs, x.revision)) @@ -608,7 +612,7 @@ files = set() if len(changesets) % 100 == 0: t = '%d %s' % (len(changesets), repr(e.comment)[1:-1]) - ui.status(util.ellipsis(t, 80) + '\n') + ui.status(stringutil.ellipsis(t, 80) + '\n') c.entries.append(e) files.add(e.file)