Index: /issm/trunk-jpl/test/NightlyRun/GetIds.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/GetIds.py	(revision 24225)
+++ /issm/trunk-jpl/test/NightlyRun/GetIds.py	(revision 24226)
@@ -1,3 +1,3 @@
-#! / usr / bin / env python
+#!/usr/bin/env python
 from IdToName import *
 from IdFromString import *
@@ -62,5 +62,5 @@
             # no recognizable ids or id formats
     if np.size(ids) == 0 and not np.all(np.equal(ids_names, None)):
-        raise RuntimeError('runme.py: GetIds.py: include and exclude options (- i / - -    id; - in / - -    include_name; - e / - -    exclude; - en / - -    exclude_name) options must follow GetIds usage format:\n' + GetIds.__doc__)
+        raise RuntimeError('runme.py: GetIds.py: include and exclude options (-i / --id; -in / --include_name; - e / --exclude; - en / --exclude_name) options must follow GetIds usage format:\n' + GetIds.__doc__)
 
     return np.array(ids).astype(int)
Index: /issm/trunk-jpl/test/NightlyRun/IdFromString.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/IdFromString.py	(revision 24225)
+++ /issm/trunk-jpl/test/NightlyRun/IdFromString.py	(revision 24226)
@@ -1,3 +1,3 @@
-#! / usr / bin / env python
+#!/usr/bin/env python
 from IdToName import IdToName
 import os
Index: /issm/trunk-jpl/test/NightlyRun/IdToName.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/IdToName.py	(revision 24225)
+++ /issm/trunk-jpl/test/NightlyRun/IdToName.py	(revision 24226)
@@ -1,3 +1,3 @@
-#! / usr / bin / env python
+#!/usr/bin/env python
 
 
@@ -12,5 +12,5 @@
     file_text = infile.readline()
 
-    string = '  #Test Name:'
+    string = '#Test Name:'
     name = file_text[len(string) + 1: - 1]
     return name
Index: /issm/trunk-jpl/test/NightlyRun/runme.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 24225)
+++ /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 24226)
@@ -207,7 +207,7 @@
                             fid.write('\n------------------------------------------------------------------    \n')
                             fid.close()
-                            print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
+                            print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
                         else:
-                            print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
+                            print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
                             raise RuntimeError(message)
 
@@ -218,9 +218,9 @@
                 fid = open(os.path.join(ISSM_DIR, 'nightlylog', 'pythonerror.log'), 'a')
                 fid.write('%s' % message)
-                fid.write('\n------------------------------------------------------------------    \n')
+                fid.write('\n------------------------------------------------------------------ \n')
                 fid.close()
-                print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
+                print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
             else:
-                print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
+                print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
                 raise RuntimeError(message)
 
