Skip to content

Commit 8cd8a0d

Browse files
committed
fix formatting
1 parent f5fe26e commit 8cd8a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_forge_tick/git_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ def format_field(key: str, value: str) -> str:
10731073
return f"{key}:\n{value}"
10741074
return f"{key}: {value}"
10751075

1076-
output += "".join(format_field(key, value) for key, value in data.items())
1076+
output += "\n".join(format_field(key, value) for key, value in data.items())
10771077
output += f"\n{border}"
10781078

10791079
logger.debug(output)

0 commit comments

Comments
 (0)