diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-06-15 00:00:51 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-06-15 00:00:51 (GMT) |
commit | 87526d678662e2ce64047a370e514efe33a922e9 (patch) | |
tree | 8007935bda52f2f315d3e636b34dcaaa1286a1a8 | |
parent | f1bd5c6881fa739240d8ae8bd7a0d242b5c9500d (diff) | |
download | SCons-87526d678662e2ce64047a370e514efe33a922e9.zip SCons-87526d678662e2ce64047a370e514efe33a922e9.tar.gz SCons-87526d678662e2ce64047a370e514efe33a922e9.tar.bz2 |
[appveyor skip][travis skip] fix sider warning
-rw-r--r-- | test/fixture/mylink.py | 6 |
1 files 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__': |