mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
removing the last remaning apply() calls
This commit is contained in:
parent
1b48671ef1
commit
f638486cf0
3 changed files with 3 additions and 3 deletions
|
@ -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 ---------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue