Fix #1508 - TypeError in cell_data_queue() could not convert argument to correct param type
This commit is contained in:
parent
4c54cfedb9
commit
e688b45448
|
@ -131,7 +131,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:
|
||||
|
|
Loading…
Reference in New Issue