Changeset 17127
- Timestamp:
- 01/16/14 16:17:37 (11 years ago)
- 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 1 from socket import gethostname 2 2 import subprocess 3 3 import os … … 13 13 14 14 #first get hostname 15 hostname= socket.gethostname().lower().split('.')[0]15 hostname=gethostname() 16 16 17 17 #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 1 from socket import gethostname 2 2 import subprocess 3 3 import os … … 13 13 14 14 #first get hostname 15 hostname= socket.gethostname().lower().split('.')[0]15 hostname=gethostname() 16 16 17 17 #if same as host, just run the command.
Note:
See TracChangeset
for help on using the changeset viewer.