From 831b81529ce7e1674d0bdef9a91c5f337a0e3615 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Tue, 27 Oct 2009 11:07:30 +0000 Subject: [PATCH] update the ChangeLog so andar doesn't beat me up fix displaying tracker urls with & in the url in the gtkui --- deluge/ui/gtkui/details_tab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/gtkui/details_tab.py b/deluge/ui/gtkui/details_tab.py index e4ddb8288..e863b51b7 100644 --- a/deluge/ui/gtkui/details_tab.py +++ b/deluge/ui/gtkui/details_tab.py @@ -105,9 +105,9 @@ class DetailsTab(Tab): if widget[0].get_text() != txt: if widget[2][0] == 'comment' and is_url(txt): - widget[0].set_markup('%s' % (txt, txt)) + widget[0].set_markup('%s' % (txt, txt.replace('&', '&'))) else: - widget[0].set_markup(txt) + widget[0].set_markup(txt.replace('&', '&')) def clear(self): for widget in self.label_widgets: