Module: deluge Branch: master Commit: b7e7a4bc493d2e6a9131fda3163000d8d88f69d8
Author: Andrew Resch <[email protected]> Date: Thu Jan 27 11:18:40 2011 -0800 Fix typo --- deluge/core/torrent.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 735ffa8..9c09f52 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(): -- 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.
