From ffebfb9cdf1c734594e6e17fc1909d1f46769637 Mon Sep 17 00:00:00 2001 From: Chad Miller <> Date: Sat, 5 Feb 2011 00:25:14 +0000 Subject: [PATCH] Fix #1508 - TypeError in cell_data_queue() could not convert argument to correct param type --- deluge/ui/gtkui/torrentview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index e810a4258..141474df4 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -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: