summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-19 12:51:46 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-19 12:51:46 +0000
commit1ae6dbf87136223f6600be674f4d09a8644e4832 (patch)
tree8766da29746dc76248ef07ab4de92383f2055292
parent3d1cd9bf000614d1f2f4cea2f7a3f46d0e40f245 (diff)
downloaddeluge-1ae6dbf87136223f6600be674f4d09a8644e4832.tar.gz
deluge-1ae6dbf87136223f6600be674f4d09a8644e4832.tar.bz2
deluge-1ae6dbf87136223f6600be674f4d09a8644e4832.zip
allow creation of torrents without trackers
-rw-r--r--ChangeLog1
-rw-r--r--plugins/TorrentCreator/__init__.py4
2 files changed, 1 insertions, 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()