Description: "text" properties on cell renderers must be strs, it seems
Author: Chad Miller <chad.miller@canonical.com>
Bug-Ubuntu: https://bugs.launchpad.net/deluge/+bug/708726
Bug: http://dev.deluge-torrent.org/ticket/1508

--- a/deluge/ui/gtkui/torrentview.py	2011-02-01 22:22:35.763906000 -0500
+++ b/deluge/ui/gtkui/torrentview.py	2011-02-01 22:24:20.435597886 -0500
@@ -128,7 +128,7 @@
     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:
