diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-07-24 11:37:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-07-24 11:37:23 (GMT) |
commit | 5bb6ff926b2bd62a218b607ea98059af0923ec04 (patch) | |
tree | f8357f9f4b0a99febdeecb520d6fd6e6400a3d51 /Mac | |
parent | 7aeb6ef941bca055027173fac8c9c9015f977c4a (diff) | |
download | cpython-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.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""" |