Changeset 17127


Ignore:
Timestamp:
01/16/14 16:17:37 (11 years ago)
Author:
Eric.Larour
Message:

CHG: corrected issues with uneven use of gethostname() routine.

Location:
issm/trunk-jpl/src/m/os
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/os/issmscpin.py

    r13170 r17127  
    1 import socket
     1from socket import gethostname
    22import subprocess
    33import os
     
    1313
    1414        #first get hostname
    15         hostname=socket.gethostname().lower().split('.')[0]
     15        hostname=gethostname()
    1616
    1717        #first be sure packages are not in the current directory, this could conflict with pscp on windows.
  • issm/trunk-jpl/src/m/os/issmssh.py

    r13827 r17127  
    1 import socket
     1from socket import gethostname
    22import subprocess
    33import os
     
    1313
    1414        #first get hostname
    15         hostname=socket.gethostname().lower().split('.')[0]
     15        hostname=gethostname()
    1616
    1717        #if same as host, just run the command.
Note: See TracChangeset for help on using the changeset viewer.