Skip to content
Snippets Groups Projects
Commit 01d956e9 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix typo in condition.

parent de1043e2
No related branches found
No related tags found
3 merge requests!279v0.4.0,!253v0.4.0,!163Export refactor
Pipeline #55363 failed
...@@ -118,7 +118,7 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = ...@@ -118,7 +118,7 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
outputs_size=outputs_size outputs_size=outputs_size
) )
if export_lib is None: if export_lib is not None:
# Copy all static files in the export # Copy all static files in the export
for source, destination in export_lib.static_files.items(): for source, destination in export_lib.static_files.items():
copy_file(source, str(export_folder / destination)) copy_file(source, str(export_folder / destination))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment