16799e3e99bcb6bea9f904e1c217f5334fb38313
mspeir
  Thu Jun 1 15:09:07 2017 -0700
Adding missing space in command output, refs #19495

diff --git src/utils/qa/runBits src/utils/qa/runBits
index e7982fd..aee0421 100755
--- src/utils/qa/runBits
+++ src/utils/qa/runBits
@@ -29,23 +29,23 @@
 def main():
     args = parseCommandLine()
     db = args.db
     table = args.table
     checkUnbridged = args.checkUnbridged
 
     output = ""
 
     fbCmd = ["featureBits", "-countGaps", db, table]
     fbOut, fbErr = qaUtils.runCommand(fbCmd)
     output += "\n" + fbCmd[0] + " " + fbCmd[1] + " " + fbCmd[2] + " " + fbCmd[3] + "\n" + fbErr
 
     fbGapCmd = ["featureBits", "-countGaps", db, table, "gap"]
     fbGapOut, fbGapErr = qaUtils.runCommand(fbGapCmd)
     output += "\n" + fbGapCmd[0] + " " + fbGapCmd[1] + " " + fbGapCmd[2] + " " + fbGapCmd[3] +\
-              fbGapCmd[4] + "\n" + fbGapErr
+              " " + fbGapCmd[4] + "\n" + fbGapErr
 
     gapOverlapOut = checkGapOverlap.checkGapOverlap(db, table, checkUnbridged)
 
     print output + gapOverlapOut
 
 if __name__ == "__main__":
     main()