mercurial/sparse.py
changeset 34547 81aebcc73beb
parent 33685 e1c56486d1aa
child 34548 b4955650eb57
equal deleted inserted replaced
34546:e4cf957bf7ce 34547:81aebcc73beb
   484             new = sparsematch(file)
   484             new = sparsematch(file)
   485             if old and not new:
   485             if old and not new:
   486                 dropped.append(file)
   486                 dropped.append(file)
   487 
   487 
   488     # Apply changes to disk
   488     # Apply changes to disk
   489     typeactions = dict((m, []) for m in 'a f g am cd dc r dm dg m e k'.split())
   489     typeactions = dict((m, [])
       
   490                        for m in 'a f g am cd dc r dm dg m e k p'.split())
   490     for f, (m, args, msg) in actions.iteritems():
   491     for f, (m, args, msg) in actions.iteritems():
   491         if m not in typeactions:
   492         if m not in typeactions:
   492             typeactions[m] = []
   493             typeactions[m] = []
   493         typeactions[m].append((f, args, msg))
   494         typeactions[m].append((f, args, msg))
   494 
   495