We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ac6a4 commit 72c5351Copy full SHA for 72c5351
WebHostLib/check.py
@@ -28,7 +28,7 @@ def check():
28
results, _ = roll_options(options)
29
if len(options) > 1:
30
# offer combined file back
31
- combined_yaml = "---\n".join(f"# original filename: {file_name}\n{file_content.decode('utf-8-sig')}"
+ combined_yaml = "\n---\n".join(f"# original filename: {file_name}\n{file_content.decode('utf-8-sig')}"
32
for file_name, file_content in options.items())
33
combined_yaml = base64.b64encode(combined_yaml.encode("utf-8-sig")).decode()
34
else:
0 commit comments