lfcommands: use %d on known-int in format string
Differential Revision: https://phab.mercurial-scm.org/D3352
--- a/hgext/largefiles/lfcommands.py Fri Apr 13 22:12:30 2018 -0400
+++ b/hgext/largefiles/lfcommands.py Fri Apr 13 22:26:57 2018 -0400
@@ -589,7 +589,7 @@
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)