Changed findertools.move() to move() in movetotrash.
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 @@
 	"""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"""