1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2024-10-31 22:05:58 +00:00

Add e to lin

This commit is contained in:
Andrew Senetar 2020-06-24 17:11:09 -05:00
parent b048fa5968
commit d2193328a7
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1

View File

@ -557,7 +557,7 @@ def fix_qt_resource_file(path):
with open(path, "rb") as fp:
contents = fp.read()
lines = contents.split(b"\n")
lines = [lin for lin in lines if not lin.startswith(b"#")]
lines = [line for line in lines if not line.startswith(b"#")]
with open(path, "wb") as fp:
fp.write(b"\n".join(lines))