mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
Do not recurse into subdirs for edl wl
This commit is contained in:
parent
f6b94da5fa
commit
5519382699
1 changed files with 2 additions and 3 deletions
|
@ -724,9 +724,8 @@ class firehose_client(metaclass=LogBase):
|
|||
filenames = []
|
||||
if self.firehose.modules is not None:
|
||||
self.firehose.modules.writeprepare()
|
||||
for dirName, subdirList, fileList in os.walk(directory):
|
||||
for fname in fileList:
|
||||
filenames.append(os.path.join(dirName, fname))
|
||||
for fname in filter(os.path.isfile, [ os.path.join(directory, i) for i in os.listdir(directory) ]):
|
||||
filenames.append(fname)
|
||||
for lun in luns:
|
||||
data, guid_gpt = self.firehose.get_gpt(lun, int(options["--gpt-num-part-entries"]),
|
||||
int(options["--gpt-part-entry-size"]),
|
||||
|
|
Loading…
Reference in a new issue