removing the last remaning apply() calls

This commit is contained in:
Tarek Ziadé 2009-10-03 00:07:35 +00:00
parent 1b48671ef1
commit f638486cf0
3 changed files with 3 additions and 3 deletions

View file

@ -190,7 +190,7 @@ def remove_tree(directory, verbose=1, dry_run=0):
_build_cmdtuple(directory, cmdtuples)
for cmd in cmdtuples:
try:
apply(cmd[0], (cmd[1],))
cmd[0](cmd[1])
# remove dir from cache if it's already there
abspath = os.path.abspath(cmd[1])
if abspath in _path_created: