Spaces:
Runtime error
Runtime error
fix paths
Browse files
app.py
CHANGED
@@ -113,9 +113,9 @@ def merge(
|
|
113 |
yield from runner.run_thread(
|
114 |
run_merge,
|
115 |
merge_config=merge_config,
|
116 |
-
out_path=merged_path,
|
117 |
options=merge_options,
|
118 |
-
config_source=config_path,
|
119 |
)
|
120 |
|
121 |
if runner.error:
|
|
|
113 |
yield from runner.run_thread(
|
114 |
run_merge,
|
115 |
merge_config=merge_config,
|
116 |
+
out_path=str(merged_path),
|
117 |
options=merge_options,
|
118 |
+
config_source=str(config_path),
|
119 |
)
|
120 |
|
121 |
if runner.error:
|