diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-05-22 18:27:34 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-05-22 18:27:34 (GMT) |
commit | 10b7f6beb261c41ac87e915cbd20e7f069f67c45 (patch) | |
tree | 7dab338f417d78b9d31c0ae313db39782df175b5 | |
parent | 45df0d7e82d792f8f66bfe41d9123ea0b9c77f74 (diff) | |
download | SCons-10b7f6beb261c41ac87e915cbd20e7f069f67c45.zip SCons-10b7f6beb261c41ac87e915cbd20e7f069f67c45.tar.gz SCons-10b7f6beb261c41ac87e915cbd20e7f069f67c45.tar.bz2 |
[skip appveyor] [skip travis] resolve sider complaints in test fixtures
-rw-r--r-- | test/fixture/mylink_win32.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixture/mylink_win32.py b/test/fixture/mylink_win32.py index 438e920..477fc95 100644 --- a/test/fixture/mylink_win32.py +++ b/test/fixture/mylink_win32.py @@ -10,7 +10,7 @@ while args: out = a[5:] with open(out, 'w') as ofp, open(args[0], 'r') as ifp: - for l in ifp.readlines(): - if l[:5] != '#link': - ofp.write(l) + for line in ifp.readlines(): + if line[:5] != '#link': + ofp.write(line) sys.exit(0) |