From 9e43956e1b2d92399f5f95e825657a63a33654f2 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 6 Dec 2011 23:51:00 +0000 Subject: [PATCH] Fix spelling mistake --- deluge/ui/console/modes/alltorrents.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/console/modes/alltorrents.py b/deluge/ui/console/modes/alltorrents.py index 4193abc68..1c0193b9c 100644 --- a/deluge/ui/console/modes/alltorrents.py +++ b/deluge/ui/console/modes/alltorrents.py @@ -509,11 +509,11 @@ class AllTorrents(BaseMode, component.Component): def __report_add_status(self, succ_cnt, fail_cnt, fail_msgs): if fail_cnt == 0: - self.report_message("Torrents Added","{!success!}Sucessfully added %d torrent(s)"%succ_cnt) + self.report_message("Torrents Added","{!success!}Successfully added %d torrent(s)"%succ_cnt) else: msg = ("{!error!}Failed to add the following %d torrent(s):\n {!error!}"%fail_cnt)+"\n {!error!}".join(fail_msgs) if succ_cnt != 0: - msg += "\n \n{!success!}Sucessfully added %d torrent(s)"%succ_cnt + msg += "\n \n{!success!}Successfully added %d torrent(s)"%succ_cnt self.report_message("Torrent Add Report",msg) def _do_add(self, result):