Show More
@@ -94,6 +94,9 b' def computechangesetfilesremoved(ctx):' | |||||
94 | for f in ctx.files(): |
|
94 | for f in ctx.files(): | |
95 | if f not in ctx: |
|
95 | if f not in ctx: | |
96 | removed.append(f) |
|
96 | removed.append(f) | |
|
97 | if removed: | |||
|
98 | rf = get_removal_filter(ctx) | |||
|
99 | removed = [r for r in removed if not rf(r)] | |||
97 | return removed |
|
100 | return removed | |
98 |
|
101 | |||
99 |
|
102 |
General Comments 0
You need to be logged in to leave comments.
Login now