From b7e7a4bc493d2e6a9131fda3163000d8d88f69d8 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 27 Jan 2011 11:18:40 -0800 Subject: [PATCH] Fix typo --- deluge/core/torrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 735ffa802..9c09f5231 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -904,7 +904,7 @@ class Torrent(object): return # Make sure the new folder path is nice and has a trailing slash - new_folder = os.path.norm(new_folder) + "/" + new_folder = os.path.normpath(new_folder) + "/" wait_on_folder = (folder, new_folder, []) for f in self.get_files():