From: Jack Jansen Date: Tue, 24 Jul 2001 11:37:23 +0000 (+0000) Subject: Changed findertools.move() to move() in movetotrash. X-Git-Tag: v2.2a3~974 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bb6ff926b2bd62a218b607ea98059af0923ec04;p=thirdparty%2FPython%2Fcpython.git Changed findertools.move() to move() in movetotrash. --- diff --git a/Mac/Lib/findertools.py b/Mac/Lib/findertools.py index 0fd4c51183e3..7e1e3fd648e1 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"""