hgext/largefiles/overrides.py
branchstable
changeset 15787 0c7b83a057aa
parent 15786 aca0f2b3c7e3
child 15788 07b6af9076b4
--- a/hgext/largefiles/overrides.py	Sun Jan 08 11:19:51 2012 +0100
+++ b/hgext/largefiles/overrides.py	Sun Jan 08 12:35:47 2012 +0100
@@ -841,7 +841,11 @@
             ui.status('\n')
 
 def override_summary(orig, ui, repo, *pats, **opts):
-    orig(ui, repo, *pats, **opts)
+    try:
+        repo.lfstatus = True
+        orig(ui, repo, *pats, **opts)
+    finally:
+        repo.lfstatus = False
 
     if opts.pop('large', None):
         toupload = getoutgoinglfiles(ui, repo, None, **opts)