diff --git a/send2trash/plat_other.py b/send2trash/plat_other.py index 657d4a3..9ca7cc7 100644 --- a/send2trash/plat_other.py +++ b/send2trash/plat_other.py @@ -57,7 +57,7 @@ def move_without_conflict(src, dst): counter += 1 base_name, ext = op.splitext(filename) new_filename = '{0} {1}{2}'.format(base_name, counter, ext) - destpath = op.join(TRASH_PATH, new_filename) + destpath = op.join(dst, new_filename) os.rename(src, destpath) def send2trash(path):