From 96d8f100806753ba1b2de9f735a711817326b8b4 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sat, 7 Jan 2012 19:53:24 +0000 Subject: [PATCH] Strip trailing space and tabs in aboutdialog --- deluge/ui/gtkui/aboutdialog.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deluge/ui/gtkui/aboutdialog.py b/deluge/ui/gtkui/aboutdialog.py index f4f9f967f..1e0c665ad 100644 --- a/deluge/ui/gtkui/aboutdialog.py +++ b/deluge/ui/gtkui/aboutdialog.py @@ -17,9 +17,9 @@ # # You should have received a copy of the GNU General Public License # along with deluge. If not, write to: -# The Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor -# Boston, MA 02110-1301, USA. +# The Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor +# Boston, MA 02110-1301, USA. # # In addition, as a special exception, the copyright holders give # permission to link the code of portions of this program with the OpenSSL @@ -285,10 +285,10 @@ class AboutDialog: if not client.is_classicmode(): self.about.set_comments( self.about.get_comments() + _("Server:") + " %coreversion%\n") - + self.about.set_comments( self.about.get_comments() + "\n" + _("libtorrent:") + " %ltversion%\n") - + def on_lt_version(result): c = self.about.get_comments() c = c.replace("%ltversion%", result)