# HG changeset patch # User Mads Kiilerich # Date 2014-07-18 19:22:01 # Node ID c7570745a2ea55acb8ceb8593e15ac64bf853cbe # Parent 3136811db1afb977ae5ff3ad613c489ab4a1c4e4 pull requests: fix c.other_repo - it has always been the same as org_repo, aparently incorrectly diff --git a/kallithea/controllers/pullrequests.py b/kallithea/controllers/pullrequests.py --- a/kallithea/controllers/pullrequests.py +++ b/kallithea/controllers/pullrequests.py @@ -193,7 +193,7 @@ class PullrequestsController(BaseRepoCon c.org_ref_name, c.org_rev) = pull_request.org_ref.split(':') - c.other_repo = c.org_repo + c.other_repo = pull_request.other_repo (c.other_ref_type, c.other_ref_name, c.other_rev) = pull_request.other_ref.split(':')