From 9a5db017001400ae297e5c4abc58c2e373e46a03 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 21 Aug 2007 10:28:04 +0000 Subject: [PATCH] Fix typo in MoveTorrent plugin. --- plugins/MoveTorrent/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MoveTorrent/__init__.py b/plugins/MoveTorrent/__init__.py index 7c8f2b08a..e65ee6b41 100644 --- a/plugins/MoveTorrent/__init__.py +++ b/plugins/MoveTorrent/__init__.py @@ -120,7 +120,7 @@ class movetorrentMenu: def handle_event(self, event): if event['event_type'] is self.core.constants['EVENT_STORAGE_MOVED']: if event['message'] == self.core.unique_IDs[event['unique_ID']].save_dir: - self.dialogs.show_popup_warning(self.window, _("You cannot move torrent to a different partition. Please check your preferences. Or perhalps you are trying to move torrent's files to the same directory they are already stored?")) + self.dialogs.show_popup_warning(self.window, _("You cannot move torrent to a different partition. Please check your preferences. Or perhaps you are trying to move torrent's files to the same directory they are already stored?")) self.core.unique_IDs[event['unique_ID']].save_dir = event['message'] self.core.pickle_state()