From d2193328a7649bc68e7f7818909cbd683f1d5e34 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Wed, 24 Jun 2020 17:11:09 -0500 Subject: [PATCH] Add `e` to `lin` --- hscommon/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscommon/build.py b/hscommon/build.py index 182e82cd..96f52598 100644 --- a/hscommon/build.py +++ b/hscommon/build.py @@ -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))