We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29d8c2d + 6945aa9 commit 6096444Copy full SHA for 6096444
conda_forge_tick/utils.py
@@ -267,14 +267,17 @@ def run_container_task(
267
ret["error"]
268
.split("(", maxsplit=1)[1]
269
.rsplit(")", maxsplit=1)[0]
270
+ .encode("raw_unicode_escape")
271
.decode("unicode_escape")
272
)
273
raise ContainerRuntimeError(
274
error=f"Error running {name} in container - error {ret['error'].split('(')[0]} raised:\n{ret_str}",
275
name=name,
276
cmd=pprint.pformat(cmd),
277
returncode=res.returncode,
- traceback=ret["traceback"].decode("unicode_escape"),
278
+ traceback=ret["traceback"]
279
280
+ .decode("unicode_escape"),
281
282
283
return ret["data"]
0 commit comments