Removed unnecessary parentheses

This commit is contained in:
Phil Nash 2015-11-04 18:49:19 +00:00
parent 9576ad9108
commit 315c83ad87
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ def fixAllFilesInDir( dir ):
for f in os.listdir( dir ):
path = os.path.join( dir,f )
if os.path.isfile( path ):
if( isSourceFile( path ) ):
if isSourceFile( path ):
fixFile( path )
else:
fixAllFilesInDir( path )