From 1ae6dbf87136223f6600be674f4d09a8644e4832 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 19 Nov 2007 12:51:46 +0000 Subject: [PATCH] allow creation of torrents without trackers --- ChangeLog | 1 + plugins/TorrentCreator/__init__.py | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5baa52ad8..5f574d46e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ Deluge 0.5.7 (xx November 2007) * Fix ratio bugs (hopefully for the last time) * Add preference to only show file selection popup if torrent has multiple files * Fix pause all and resume all bugs + * Allow torrent creation with no trackers * Scheduler plugin revamp by Ben Klein * Fix ETA from going backwards * UI warning on full HD - no longer just silently pauses torrents diff --git a/plugins/TorrentCreator/__init__.py b/plugins/TorrentCreator/__init__.py index 9783f05b8..23ea32946 100644 --- a/plugins/TorrentCreator/__init__.py +++ b/plugins/TorrentCreator/__init__.py @@ -134,10 +134,6 @@ class TorrentCreator: (start, end) = trackers.get_bounds() trackers = trackers.get_text(start, end).strip() - if trackers == "" or trackers == None: - deluge.dialogs.show_popup_warning(self.dialog, _("You must specify at least one tracker.")) - return False - comments = self.glade.get_widget("comments_textview").get_buffer() (start, end) = comments.get_bounds() comments = comments.get_text(start, end).strip()