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 32ea601 commit ccf9407Copy full SHA for ccf9407
trackerslist.py
@@ -32,9 +32,9 @@ def merge_files(contents):
32
# 合并文件并去除空行
33
merged_content = merge_files(file_contents)
34
35
-# 添加当前时间到合并结果的第一行
+# 添加当前时间到合并结果的第一行,同时在第一行下方添加一个空行
36
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
37
-merged_content_with_time = f"当前合并完成的时间: {current_time}\n{merged_content}"
+merged_content_with_time = f"当前合并完成的时间: {current_time}\n\n{merged_content}"
38
39
# 保存合并结果到文件
40
output_file = "trackerslist.txt"
0 commit comments