# HG changeset patch # User Siddharth Agarwal # Date 1407968030 25200 # Node ID 1b9d0dc1bbe132823d483906dd584f77c365a34d # Parent d4bc38f6eab7c2bc3b3a31259c08ece55cf60c5e largefiles: drop setting lfstatus in overridelog (issue4334) lfstatus should only be True for operations where we want standins to be printed out. We explicitly do not want that for historical operations like log. Other historical operations like hg diff -r A -r B don't print out standins either. This is required to fix issue4334, but doesn't fix anything by itself. That's why there aren't any tests accompanying this patch. diff -r d4bc38f6eab7 -r 1b9d0dc1bbe1 hgext/largefiles/overrides.py --- a/hgext/largefiles/overrides.py Wed Aug 13 15:17:03 2014 -0700 +++ b/hgext/largefiles/overrides.py Wed Aug 13 15:13:50 2014 -0700 @@ -301,10 +301,8 @@ oldmatchandpats = installmatchandpatsfn(overridematchandpats) try: - repo.lfstatus = True return orig(ui, repo, *pats, **opts) finally: - repo.lfstatus = False restorematchandpatsfn() def overrideverify(orig, ui, repo, *pats, **opts):