# HG changeset patch # User Mads Kiilerich # Date 2014-08-21 23:46:55 # Node ID 1337ada582a1b94af8f7085d98462e69a078251d # Parent 8e26c46e9abe003a3cf2c5d8c735974c6906819a pull requests: fix execessive indexing for peer - that is one reason it didn't really work diff --git a/kallithea/controllers/pullrequests.py b/kallithea/controllers/pullrequests.py --- a/kallithea/controllers/pullrequests.py +++ b/kallithea/controllers/pullrequests.py @@ -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: