Changeset - 1337ada582a1
[Not reviewed]
default
0 1 0
Mads Kiilerich - 11 years ago 2014-08-21 23:46:55
madski@unity3d.com
pull requests: fix execessive indexing for peer - that is one reason it didn't really work
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/controllers/pullrequests.py
Show inline comments
 
@@ -158,7 +158,7 @@ class PullrequestsController(BaseRepoCon
 

	
 
        # prio 3: most recent peer branch
 
        if peers and not selected:
 
            selected = peers[0][0][0]
 
            selected = peers[0][0]
 

	
 
        # prio 4: tip revision
 
        if not selected:
0 comments (0 inline, 0 general)