summaryrefslogtreecommitdiff
path: root/Tools/scripts/pindent.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/scripts/pindent.py')
-rwxr-xr-xTools/scripts/pindent.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/pindent.py b/Tools/scripts/pindent.py
index 75175dc83a..39cdcc8b46 100755
--- a/Tools/scripts/pindent.py
+++ b/Tools/scripts/pindent.py
@@ -531,8 +531,8 @@ def test():
action(sys.stdin, sys.stdout, stepsize, tabsize, expandtabs)
else:
action = eval(action + '_file')
- for file in args:
- action(file, stepsize, tabsize, expandtabs)
+ for filename in args:
+ action(filename, stepsize, tabsize, expandtabs)
# end for
# end if
# end def test