summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-06-15 00:00:51 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-06-15 00:00:51 (GMT)
commit87526d678662e2ce64047a370e514efe33a922e9 (patch)
tree8007935bda52f2f315d3e636b34dcaaa1286a1a8
parentf1bd5c6881fa739240d8ae8bd7a0d242b5c9500d (diff)
downloadSCons-87526d678662e2ce64047a370e514efe33a922e9.zip
SCons-87526d678662e2ce64047a370e514efe33a922e9.tar.gz
SCons-87526d678662e2ce64047a370e514efe33a922e9.tar.bz2
[appveyor skip][travis skip] fix sider warning
-rw-r--r--test/fixture/mylink.py6
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__':