From: Jack Jansen Date: Wed, 25 Jul 2001 20:41:14 +0000 (+0000) Subject: Put 1.7 fix in maintainance branch (removed erronuous findertools reference). X-Git-Tag: v2.1.2c1~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e45e1716841e5a3877b22d4e543864961a63745;p=thirdparty%2FPython%2Fcpython.git Put 1.7 fix in maintainance branch (removed erronuous findertools reference). --- 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"""