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,16 +30,13 @@
import struct
import socket
import os
import thread
try:
import pwd
pwd_error = False
except ImportError:
pwd_error = True
try:
import thread
except ImportError:
import thread as _thread
class WsId(object):