Changeset 17126


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

CHG: use gethostname() homogeneously across the code.

File:
1 edited

Legend:

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

    r13170 r17126  
    1 import socket
     1from socket  import gethostname
    22import subprocess
    33import os
     
    1212
    1313        #get hostname
    14         hostname=socket.gethostname().lower().split('.')[0]
     14        hostname=gethostname();
    1515
    1616        #if hostname and host are the same, do a simple copy
Note: See TracChangeset for help on using the changeset viewer.