equal
deleted
inserted
replaced
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 |