Skip to content

Commit 63f1284

Browse files
bosdbosd
authored andcommitted
🐛 Fixup config_file handling.
When providng a destination config file, it was not properly propagated to the .sh file
1 parent 8e26a40 commit 63f1284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/odoo_data_flow/lib/transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def write_to_file(
287287
info_copy = info.copy()
288288
# NEW: Use the config from params if available,
289289
# otherwise use the processor's default
290-
info_copy["config"] = info.get("config") or self.config_file
290+
info_copy["conf_file"] = str(info.get("config")) or self.config_file
291291
info_copy.update(
292292
{
293293
"model": info.get("model", "auto"),

0 commit comments

Comments
 (0)