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.
1 parent f5fe26e commit 8cd8a0dCopy full SHA for 8cd8a0d
conda_forge_tick/git_utils.py
@@ -1073,7 +1073,7 @@ def format_field(key: str, value: str) -> str:
1073
return f"{key}:\n{value}"
1074
return f"{key}: {value}"
1075
1076
- output += "".join(format_field(key, value) for key, value in data.items())
+ output += "\n".join(format_field(key, value) for key, value in data.items())
1077
output += f"\n{border}"
1078
1079
logger.debug(output)
0 commit comments