# HG changeset patch # User Augie Fackler # Date 2018-04-14 02:26:57 # Node ID 25136e03012e3776079cb7aca7293983e10c1d42 # Parent 89d82d2b68e98d4c06b1970ec85a4941fe66b28a lfcommands: use %d on known-int in format string Differential Revision: https://phab.mercurial-scm.org/D3352 diff --git a/hgext/largefiles/lfcommands.py b/hgext/largefiles/lfcommands.py --- a/hgext/largefiles/lfcommands.py +++ b/hgext/largefiles/lfcommands.py @@ -589,7 +589,7 @@ def lfpull(ui, repo, source="default", * numcached = 0 for rev in revs: - ui.note(_('pulling largefiles for revision %s\n') % rev) + ui.note(_('pulling largefiles for revision %d\n') % rev) (cached, missing) = cachelfiles(ui, repo, rev) numcached += len(cached) ui.status(_("%d largefiles cached\n") % numcached)