Skip to content

Commit a0d1e4e

Browse files
committed
Avoid l as a variable name
Python-lint correctly warns about single-character variables that can be confused with numbers
1 parent be4e2a0 commit a0d1e4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/swift-rpathize.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ def rpathize(filename):
6464

6565
# Build a command to invoke install_name_tool.
6666
command = ['install_name_tool']
67-
for line in dylibsOutput.splitlines():
68-
l = line.decode("utf-8", "strict")
69-
match = dylib_regex.match(l)
67+
for binaryline in dylibsOutput.splitlines():
68+
line = binaryline.decode("utf-8", "strict")
69+
match = dylib_regex.match(line)
7070
if match:
7171
command.append('-change')
7272
command.append(match.group('path'))

0 commit comments

Comments
 (0)