summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-07-24 11:37:23 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-07-24 11:37:23 (GMT)
commit5bb6ff926b2bd62a218b607ea98059af0923ec04 (patch)
treef8357f9f4b0a99febdeecb520d6fd6e6400a3d51 /Mac
parent7aeb6ef941bca055027173fac8c9c9015f977c4a (diff)
downloadcpython-5bb6ff926b2bd62a218b607ea98059af0923ec04.zip
cpython-5bb6ff926b2bd62a218b607ea98059af0923ec04.tar.gz
cpython-5bb6ff926b2bd62a218b607ea98059af0923ec04.tar.bz2
Changed findertools.move() to move() in movetotrash.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/findertools.py2
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"""