From 87526d678662e2ce64047a370e514efe33a922e9 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Sun, 14 Jun 2020 17:00:51 -0700 Subject: [appveyor skip][travis skip] fix sider warning --- test/fixture/mylink.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/fixture/mylink.py b/test/fixture/mylink.py index 6c56427..0fa47a9 100644 --- a/test/fixture/mylink.py +++ b/test/fixture/mylink.py @@ -28,9 +28,9 @@ def fake_win32_link(): args = args[1:] if a[:5].lower() == '/out:': out = a[5:] with open(args[0], 'rb') as ifp, open(out, 'wb') as ofp: - for l in ifp.readlines(): - if not l.startswith(b'#link'): - ofp.write(l) + for line in ifp.readlines(): + if not line.startswith(b'#link'): + ofp.write(line) sys.exit(0) if __name__ == '__main__': -- cgit v0.12