Version v1.75.0

This commit is contained in:
Nick Craig-Wood
2026-07-31 16:56:33 +01:00
parent 3f8df416c8
commit 9ee9d0a0ca
76 changed files with 13809 additions and 4340 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ import os
import re
import time
import subprocess
from datetime import datetime
from datetime import datetime, timezone
docpath = "docs/content"
outfile = "MANUAL.md"
@@ -200,8 +200,8 @@ def read_commands(docpath):
def main():
check_docs(docpath)
command_docs = read_commands(docpath).replace("\\", "\\\\") # escape \ so we can use command_docs in re.sub
build_date = datetime.utcfromtimestamp(
int(os.environ.get('SOURCE_DATE_EPOCH', time.time())))
build_date = datetime.fromtimestamp(
int(os.environ.get('SOURCE_DATE_EPOCH', time.time())), timezone.utc)
help_output = subprocess.check_output(["rclone", "help"]).decode("utf-8")
with open(outfile, "w") as out:
out.write("""\