diff options
Diffstat (limited to 'Mac/Lib/findertools.py')
-rw-r--r-- | Mac/Lib/findertools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/findertools.py b/Mac/Lib/findertools.py index 0fd4c51..7e1e3fd 100644 --- a/Mac/Lib/findertools.py +++ b/Mac/Lib/findertools.py @@ -681,7 +681,7 @@ def movetotrash(path): """move the object to the trash""" fss = macfs.FSSpec(path) trashfolder = macfs.FSSpec(macfs.FindFolder(fss.as_tuple()[0], 'trsh', 0) + ("",)).as_pathname() - findertools.move(path, trashfolder) + move(path, trashfolder) def emptytrash(): """empty the trash""" |