Show More
@@ -221,6 +221,12 b' def filterrevs(repo, filtername, visibil' | |||||
221 | def wrapchangelog(unfichangelog, filteredrevs): |
|
221 | def wrapchangelog(unfichangelog, filteredrevs): | |
222 | cl = copy.copy(unfichangelog) |
|
222 | cl = copy.copy(unfichangelog) | |
223 | cl.filteredrevs = filteredrevs |
|
223 | cl.filteredrevs = filteredrevs | |
|
224 | ||||
|
225 | class filteredchangelog(cl.__class__): | |||
|
226 | pass | |||
|
227 | ||||
|
228 | cl.__class__ = filteredchangelog | |||
|
229 | ||||
224 | return cl |
|
230 | return cl | |
225 |
|
231 | |||
226 |
|
232 |
General Comments 0
You need to be logged in to leave comments.
Login now