# HG changeset patch
# User Mads Kiilerich <madski@unity3d.com>
# Date 1383785279 -3600
#      Thu Nov 07 01:47:59 2013 +0100
# Branch stable
# Node ID 750d04e747aaf49d70232c06ada5f1034c870d70
# Parent  d54467c1a19803de109fb8a297537d052cecc189
largefiles: cleanup of printmessage handling - the printed flag was redundant

diff --git a/hgext/largefiles/lfcommands.py b/hgext/largefiles/lfcommands.py
--- a/hgext/largefiles/lfcommands.py
+++ b/hgext/largefiles/lfcommands.py
@@ -438,10 +438,8 @@
         if filelist is not None:
             lfiles = [f for f in lfiles if f in filelist]
 
-        printed = False
         if printmessage and lfiles:
             ui.status(_('getting changed largefiles\n'))
-            printed = True
             cachelfiles(ui, repo, None, lfiles)
 
         updated, removed = 0, 0
@@ -452,12 +450,9 @@
                     updated += i
                 else:
                     removed -= i
-            if printmessage and (removed or updated) and not printed:
-                ui.status(_('getting changed largefiles\n'))
-                printed = True
 
         lfdirstate.write()
-        if printed and printmessage:
+        if printmessage and lfiles:
             ui.status(_('%d largefiles updated, %d removed\n') % (updated,
                 removed))
     finally: