Removed unnecessary parentheses
diff --git a/scripts/fixTrailingWhitespace.py b/scripts/fixTrailingWhitespace.py
index 0ffe8e9..a1b6bbe 100644
--- a/scripts/fixTrailingWhitespace.py
+++ b/scripts/fixTrailingWhitespace.py
@@ -11,7 +11,7 @@
     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 )