Mercurial > hg-stable
changeset 40225:474809790256
py3: use '%d' for integers instead of '%s'
Differential Revision: https://phab.mercurial-scm.org/D5036
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sat, 13 Oct 2018 04:51:09 +0300 |
parents | 63245ad598af |
children | 0d403e9f049a |
files | hgext/convert/monotone.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/monotone.py Sat Oct 13 04:47:51 2018 +0300 +++ b/hgext/convert/monotone.py Sat Oct 13 04:51:09 2018 +0300 @@ -102,7 +102,7 @@ command.append('l') for arg in args: - command += "%s:%s" % (len(arg), arg) + command += "%d:%s" % (len(arg), arg) command.append('e') command = ''.join(command)