Show More
@@ -28,7 +28,9 b' def setup():' | |||||
28 | nooptypes = set(['k']) # TODO: handle with nonconflicttypes |
|
28 | nooptypes = set(['k']) # TODO: handle with nonconflicttypes | |
29 | nonconflicttypes = set('a am c cm f g r e'.split()) |
|
29 | nonconflicttypes = set('a am c cm f g r e'.split()) | |
30 | narrowmatch = repo.narrowmatch() |
|
30 | narrowmatch = repo.narrowmatch() | |
31 | for f, action in actions.items(): |
|
31 | # We mutate the items in the dict during iteration, so iterate | |
|
32 | # over a copy. | |||
|
33 | for f, action in list(actions.items()): | |||
32 | if narrowmatch(f): |
|
34 | if narrowmatch(f): | |
33 | pass |
|
35 | pass | |
34 | elif not branchmerge: |
|
36 | elif not branchmerge: |
General Comments 0
You need to be logged in to leave comments.
Login now