mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-11 12:04:10 +00:00
Add extra output in add_torrent_url() and update TODO list.
This commit is contained in:
parent
e3188695c6
commit
9370d81444
2
TODO
2
TODO
@ -16,8 +16,6 @@
|
||||
* Figure out easy way for user-made plugins to add i18n support.
|
||||
* Change the menubar.py gtkui component to menus.py and add support for plugins
|
||||
to add menuitems to the torrentmenu in an easy way.
|
||||
* Create a new status icon.. a red alert icon to show there is an error with
|
||||
the torrent.. ie, disk full alert and stuff like that..
|
||||
* Add the tracker responses to the torrent details
|
||||
* Fast resume saving
|
||||
* Restart daemon function
|
||||
|
@ -99,7 +99,9 @@ def add_torrent_url(torrent_url):
|
||||
result = core.add_torrent_url(torrent_url)
|
||||
if result is False:
|
||||
# The torrent url was not added successfully.
|
||||
log.warning("Torrent %s url was not added successfully.", torrent_url)
|
||||
log.warning("Torrent %s was not added successfully.", torrent_url)
|
||||
else:
|
||||
log.warning("Invalid URL %s", torrent_url)
|
||||
|
||||
def remove_torrent(torrent_ids):
|
||||
"""Removes torrent_ids from the core.. Expects a list of torrent_ids"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user