From 39e8866b97a7fc1a7a2299c9b78e37f12599b301 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 1 Apr 2008 07:46:41 +0000 Subject: [PATCH] Fix #131 --- deluge/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index 993b21972..098618f68 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -351,7 +351,7 @@ class Core( log.warning("Error pausing torrent %s", torrent_id) def export_move_torrent(self, torrent_ids, dest): - log.debug("Moving torrents %s to %s", torrent_id, dest) + log.debug("Moving torrents %s to %s", torrent_ids, dest) for torrent_id in torrent_ids: if not self.torrents[torrent_id].move_storage(dest): log.warning("Error moving torrent %s to %s", torrent_id, dest)