# HG changeset patch # User Mads Kiilerich # Date 1412288436 -7200 # Node ID 0ece1a4cf6e3972036b17ee7efc0875375dff2c0 # Parent 2dad9708c89f164a8998d5d87be46904baf38355 pull requests: the node for null is not '0' but 40 * '0' Fix crash in PR loading diff -r 2dad9708c89f -r 0ece1a4cf6e3 kallithea/controllers/pullrequests.py --- a/kallithea/controllers/pullrequests.py Sun Sep 14 07:39:06 2014 +0200 +++ b/kallithea/controllers/pullrequests.py Fri Oct 03 00:20:36 2014 +0200 @@ -166,7 +166,7 @@ if tipbranch: selected = 'branch:%s:%s' % (tipbranch, tiprev) else: - selected = 'tag:null:0' + selected = 'tag:null:' + repo.EMPTY_CHANGESET tags.append((selected, 'null')) else: if 'master' in repo.branches: