diff -r 5e67c20915a7 -r ab04972a33ef hgext/lfs/blobstore.py --- a/hgext/lfs/blobstore.py Sat Apr 14 20:11:27 2018 -0400 +++ b/hgext/lfs/blobstore.py Sat Apr 14 21:16:35 2018 -0400 @@ -451,10 +451,9 @@ if action == 'upload': self.ui.status(_('lfs: uploaded %d files (%s)\n') % (blobs, util.bytecount(processed))) - # TODO: coalesce the download requests, and comment this in - #elif action == 'download': - # self.ui.status(_('lfs: downloaded %d files (%s)\n') - # % (blobs, util.bytecount(processed))) + elif action == 'download': + self.ui.status(_('lfs: downloaded %d files (%s)\n') + % (blobs, util.bytecount(processed))) def __del__(self): # copied from mercurial/httppeer.py