diff options
Diffstat (limited to 'Tools/scripts/pindent.py')
-rwxr-xr-x | Tools/scripts/pindent.py | 4 |
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 |