Unlocks all things which were locked due to ARMv7, etc

This commit is contained in:
Trenton H
2023-09-08 08:53:07 -07:00
parent 3205bb3bdf
commit d532913d56
12 changed files with 1121 additions and 1093 deletions

View File

@@ -182,8 +182,8 @@ class Command(BaseCommand):
doc_path = self.source / doc_file
if not doc_path.exists():
raise CommandError(
'The manifest file refers to "{}" which does not '
"appear to be in the source directory.".format(doc_file),
f'The manifest file refers to "{doc_file}" which does not '
"appear to be in the source directory.",
)
try:
with doc_path.open(mode="rb") as infile: