Changeset 24226


Ignore:
Timestamp:
10/14/19 23:52:16 (5 years ago)
Author:
bdef
Message:

Fixing some more extraneous spaces

Location:
issm/trunk-jpl/test/NightlyRun
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/GetIds.py

    r24214 r24226  
    1 #! / usr / bin / env python
     1#!/usr/bin/env python
    22from IdToName import *
    33from IdFromString import *
     
    6262            # no recognizable ids or id formats
    6363    if np.size(ids) == 0 and not np.all(np.equal(ids_names, None)):
    64         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__)
     64        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__)
    6565
    6666    return np.array(ids).astype(int)
  • issm/trunk-jpl/test/NightlyRun/IdFromString.py

    r24214 r24226  
    1 #! / usr / bin / env python
     1#!/usr/bin/env python
    22from IdToName import IdToName
    33import os
  • issm/trunk-jpl/test/NightlyRun/IdToName.py

    r24214 r24226  
    1 #! / usr / bin / env python
     1#!/usr/bin/env python
    22
    33
     
    1212    file_text = infile.readline()
    1313
    14     string = '  #Test Name:'
     14    string = '#Test Name:'
    1515    name = file_text[len(string) + 1: - 1]
    1616    return name
  • issm/trunk-jpl/test/NightlyRun/runme.py

    r24219 r24226  
    207207                            fid.write('\n------------------------------------------------------------------    \n')
    208208                            fid.close()
    209                             print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
     209                            print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
    210210                        else:
    211                             print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
     211                            print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))
    212212                            raise RuntimeError(message)
    213213
     
    218218                fid = open(os.path.join(ISSM_DIR, 'nightlylog', 'pythonerror.log'), 'a')
    219219                fid.write('%s' % message)
    220                 fid.write('\n------------------------------------------------------------------    \n')
     220                fid.write('\n------------------------------------------------------------------ \n')
    221221                fid.close()
    222                 print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
     222                print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
    223223            else:
    224                 print(('FAILURE difference: N / A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
     224                print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))
    225225                raise RuntimeError(message)
    226226
Note: See TracChangeset for help on using the changeset viewer.