Mercurial > hg
comparison mercurial/localrepo.py @ 7670:e5f445c94226
kill some trailing whitespace
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Mon, 19 Jan 2009 12:59:56 +0100 |
parents | 6a24fb994701 |
children | 1574c2704b11 |
comparison
equal
deleted
inserted
replaced
7669:ca39dbc589c9 | 7670:e5f445c94226 |
---|---|
1215 bheads.reverse() | 1215 bheads.reverse() |
1216 if start is not None: | 1216 if start is not None: |
1217 # filter out the heads that cannot be reached from startrev | 1217 # filter out the heads that cannot be reached from startrev |
1218 bheads = self.changelog.nodesbetween([start], bheads)[2] | 1218 bheads = self.changelog.nodesbetween([start], bheads)[2] |
1219 if not closed: | 1219 if not closed: |
1220 bheads = [h for h in bheads if | 1220 bheads = [h for h in bheads if |
1221 ('close' not in self.changelog.read(h)[5])] | 1221 ('close' not in self.changelog.read(h)[5])] |
1222 return bheads | 1222 return bheads |
1223 | 1223 |
1224 def branches(self, nodes): | 1224 def branches(self, nodes): |
1225 if not nodes: | 1225 if not nodes: |