mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-24 06:57:56 -05:00
Removed accidental import changes for 'thread'
This commit is contained in:
parent
1eaab02dd8
commit
228145cdc3
1 changed files with 2 additions and 5 deletions
|
@ -30,17 +30,14 @@
|
||||||
import struct
|
import struct
|
||||||
import socket
|
import socket
|
||||||
import os
|
import os
|
||||||
|
import thread
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import pwd
|
import pwd
|
||||||
pwd_error = False
|
pwd_error = False
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pwd_error = True
|
pwd_error = True
|
||||||
|
|
||||||
try:
|
|
||||||
import thread
|
|
||||||
except ImportError:
|
|
||||||
import thread as _thread
|
|
||||||
|
|
||||||
class WsId(object):
|
class WsId(object):
|
||||||
|
|
||||||
def __init__(self, networkId=None, userName=None, progName=None):
|
def __init__(self, networkId=None, userName=None, progName=None):
|
||||||
|
|
Loading…
Add table
Reference in a new issue