# HG changeset patch # User Mads Kiilerich # Date 1383785280 -3600 # Node ID 5cb0ff40374d5c2f0053ac1920abb2eb757a073c # Parent 750d04e747aaf49d70232c06ada5f1034c870d70 largefiles: cache largefiles for update, also without printmessage diff -r 750d04e747aa -r 5cb0ff40374d hgext/largefiles/lfcommands.py --- a/hgext/largefiles/lfcommands.py Thu Nov 07 01:47:59 2013 +0100 +++ b/hgext/largefiles/lfcommands.py Thu Nov 07 01:48:00 2013 +0100 @@ -438,8 +438,9 @@ if filelist is not None: lfiles = [f for f in lfiles if f in filelist] - if printmessage and lfiles: - ui.status(_('getting changed largefiles\n')) + if lfiles: + if printmessage: + ui.status(_('getting changed largefiles\n')) cachelfiles(ui, repo, None, lfiles) updated, removed = 0, 0