Show More
@@ -149,9 +149,9 b' class MercurialCommit(base.BaseCommit):' | |||
|
149 | 149 | def short_id(self): |
|
150 | 150 | return self.raw_id[:12] |
|
151 | 151 | |
|
152 |
def _make_commits(self, |
|
|
153 |
return [self.repository.get_commit(commit_id |
|
|
154 |
for id |
|
|
152 | def _make_commits(self, commit_ids, pre_load=None): | |
|
153 | return [self.repository.get_commit(commit_id=commit_id, pre_load=pre_load) | |
|
154 | for commit_id in commit_ids] | |
|
155 | 155 | |
|
156 | 156 | @LazyProperty |
|
157 | 157 | def parents(self): |
General Comments 0
You need to be logged in to leave comments.
Login now