Module: deluge Branch: master Commit: 86232cac8ed66ed3e8e58b53533a11e683570561
Author: Andrew Resch <[email protected]> Date: Wed Apr 14 15:49:21 2010 -0700 Fix #1113 set move on completed to False after a success storage move --- deluge/core/torrentmanager.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 011e40a..6506560 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -901,6 +901,7 @@ class TorrentManager(component.Component): except: return torrent.set_save_path(alert.handle.save_path()) + torrent.set_move_completed(False) def on_alert_torrent_resumed(self, alert): log.debug("on_alert_torrent_resumed") -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
