Removed accidental import changes for 'thread'

This commit is contained in:
Alex Haberlie 2016-06-02 14:56:03 -06:00
parent 1eaab02dd8
commit 228145cdc3

View file

@ -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):