1
0
mirror of https://github.com/systemd/systemd synced 2024-07-01 07:34:28 +00:00

tools/elf2efi: elif→if to make pylint happy

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2024-03-22 15:44:17 +01:00
parent 6d03e5523c
commit 125f06dd1c

View File

@ -268,7 +268,7 @@ def iter_copy_sections(elf: ELFFile) -> typing.Iterator[PeSection]:
if elf_seg["p_type"] == "PT_LOAD" and elf_seg["p_align"] != SECTION_ALIGNMENT:
raise BadSectionError(f"ELF segment {elf_seg['p_type']} is not properly aligned"
f" ({elf_seg['p_align']} != {SECTION_ALIGNMENT})")
elif elf_seg["p_type"] == "PT_GNU_RELRO":
if elf_seg["p_type"] == "PT_GNU_RELRO":
relro = elf_seg
for elf_s in elf.iter_sections():