Kiln » largefiles » largefiles-truncated
Clone URL:  

Edited for style.

Changeset 199515ba1a3b

Parent 9675010b468e

by David Golub

Changes to one file · Browse files at 199515ba1a3b Showing diff from parent 9675010b468e Diff from another changeset...

 
830
831
832
833
 
834
835
836
 
853
854
855
856
 
857
858
859
 
830
831
832
 
833
834
835
836
 
853
854
855
 
856
857
858
859
@@ -830,7 +830,7 @@
  # accidentally). This is repo specific, so duckpunch the repo object to   # keep the list of bfiles for us later.   if(orig_matchfn(bfutil.split_standin(f)) and (f in repo[None] or f in ctx)): - bfiles_list = getattr(repo, "_bfiles_to_update", []) + bfiles_list = getattr(repo, '_bfiles_to_update', [])   bfiles_list.append(bfutil.split_standin(f))   repo._bfiles_to_update = bfiles_list;   return True @@ -853,7 +853,7 @@
  except ImportError:   # Mercurial <= 1.8   cmdutil.match = oldmatch - bfiles_list = getattr(repo, "_bfiles_to_update", []) + bfiles_list = getattr(repo, '_bfiles_to_update', [])   bfcommands.revert_bfiles(ui, repo, bfiles_list)   # Empty out the bfiles list so we start fresh next time   repo._bfiles_to_update = []