Show More
@@ -183,12 +183,12 b' class PullRequestModel(BaseModel):' | |||||
183 | 'rev': 'id', |
|
183 | 'rev': 'id', | |
184 | } |
|
184 | } | |
185 |
|
185 | |||
186 | org_rev_spec = "%s('%s')" % (_revset_predicates[org_ref[0]], |
|
186 | org_rev_spec = "max(%s('%s'))" % (_revset_predicates[org_ref[0]], | |
187 | safe_str(org_ref[1])) |
|
187 | safe_str(org_ref[1])) | |
188 | org_revs = scmutil.revrange(org_repo._repo, [org_rev_spec]) |
|
188 | org_revs = scmutil.revrange(org_repo._repo, [org_rev_spec]) | |
189 | org_rev = org_repo._repo[org_revs[-1] if org_revs else -1].hex() |
|
189 | org_rev = org_repo._repo[org_revs[-1] if org_revs else -1].hex() | |
190 |
|
190 | |||
191 | other_rev_spec = "%s('%s')" % (_revset_predicates[other_ref[0]], |
|
191 | other_rev_spec = "max(%s('%s'))" % (_revset_predicates[other_ref[0]], | |
192 | safe_str(other_ref[1])) |
|
192 | safe_str(other_ref[1])) | |
193 | other_revs = scmutil.revrange(other_repo._repo, [other_rev_spec]) |
|
193 | other_revs = scmutil.revrange(other_repo._repo, [other_rev_spec]) | |
194 | other_rev = other_repo._repo[other_revs[-1] if other_revs else -1].hex() |
|
194 | other_rev = other_repo._repo[other_revs[-1] if other_revs else -1].hex() |
General Comments 0
You need to be logged in to leave comments.
Login now