diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 6e93aee41..fb21e8c45 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -1031,7 +1031,7 @@ class TorrentManager(component.Component): torrent = self.torrents[str(alert.handle.info_hash())] except: return - torrent.set_save_path(alert.handle.save_path()) + torrent.set_save_path(os.path.normpath(alert.handle.save_path())) torrent.set_move_completed(False) def on_alert_torrent_resumed(self, alert):