Fix #1508 - TypeError in cell_data_queue() could not convert argument to correct param type

This commit is contained in:
Chad Miller 2011-02-05 00:25:14 +00:00 committed by Calum Lind
parent 93091fbe23
commit ffebfb9cdf
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ def cell_data_queue(column, cell, model, row, data):
if value < 0:
cell.set_property("text", "")
else:
cell.set_property("text", value + 1)
cell.set_property("text", str(value + 1))
def queue_peer_seed_sort_function(v1, v2):
if v1 == v2: