Show More
@@ -237,7 +237,6 b' def parents(repo, subset, x):' | |||
|
237 | 237 | """``parents([set])`` |
|
238 | 238 | The set of all parents for all changesets in set, or the working directory. |
|
239 | 239 | """ |
|
240 | repo.ui.debug(repr(x), '\n') | |
|
241 | 240 | if x is None: |
|
242 | 241 | ps = tuple(p.rev() for p in repo[x].parents()) |
|
243 | 242 | return [r for r in subset if r in ps] |
General Comments 0
You need to be logged in to leave comments.
Login now