changeset 4369:c7570745a2ea

pull requests: fix c.other_repo - it has always been the same as org_repo, aparently incorrectly
author Mads Kiilerich <madski@unity3d.com>
date Fri, 18 Jul 2014 19:22:01 +0200
parents 3136811db1af
children f295fad8adff
files kallithea/controllers/pullrequests.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/controllers/pullrequests.py	Fri Jul 18 19:22:01 2014 +0200
+++ b/kallithea/controllers/pullrequests.py	Fri Jul 18 19:22:01 2014 +0200
@@ -193,7 +193,7 @@
          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(':')