Some minor clean-up to Python script
diff --git a/scripts/generateSingleHeader.py b/scripts/generateSingleHeader.py
index 78ed075..8c7715b 100755
--- a/scripts/generateSingleHeader.py
+++ b/scripts/generateSingleHeader.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 
-from  __future__ import  print_function
+from __future__ import print_function
 
 import os
 import sys
@@ -65,7 +65,7 @@
                 if headerFile != "tbc_text_format.h" and headerFile != "clara.h":
                     seenHeaders.add( headerFile )
                 write( "// #included from: {0}\n".format( header ) )
-                if( headerPath == "internal" and path.endswith( "internal/" ) ):
+                if headerPath == "internal" and path.endswith("internal/"):
                     headerPath = ""
                     sep = ""
                 if os.path.exists( path + headerPath + sep + headerFile ):