mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[nodes] fix Publish node
incorrect iteration over resolved paths
This commit is contained in:
parent
e9816a6a6e
commit
2db26314f8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class Publish(desc.Node):
|
|||
if not os.path.exists(chunk.node.output.value):
|
||||
os.mkdir(chunk.node.output.value)
|
||||
|
||||
for iFile, oFile in outFiles:
|
||||
for iFile, oFile in outFiles.items():
|
||||
print('Publish file', iFile, 'into', oFile)
|
||||
shutil.copyfile(iFile, oFile)
|
||||
print('Publish end')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue