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

@ -61,7 +61,7 @@ class FileList:
sortable_files.sort()
self.files = []
for sort_tuple in sortable_files:
self.files.append(apply(os.path.join, sort_tuple))
self.files.append(os.path.join(*sort_tuple))
# -- Other miscellaneous utility methods ---------------------------