From a8b1d98c3db66108bcc64f02cb36c2ce8c96cef2 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 6 Jun 2008 19:48:13 +0000 Subject: [PATCH] fix move plugin oops --- 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 b96b9e715..2fc505926 100644 --- a/plugins/MoveTorrent/__init__.py +++ b/plugins/MoveTorrent/__init__.py @@ -130,7 +130,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, "An error occured while trying to move the torrent. Please check your permissions and note that you cannot move a torrent's files to the same directory that they are already stored or move a torrent's files before any of its files have actually been created.")) + self.dialogs.show_popup_warning(self.window, "An error occured while trying to move the torrent. Please check your permissions and note that you cannot move a torrent's files to the same directory that they are already stored or move a torrent's files before any of its files have actually been created.") self.core.unique_IDs[event['unique_ID']].save_dir = event['message'] self.core.pickle_state()