Merge pull request #99 from Atheros1/master
Print out error no matter what the error is
This commit is contained in:
commit
0b5c5b2931
|
@ -1245,10 +1245,10 @@ class receiveDataThread(QThread):
|
|||
try:
|
||||
self.sock.send(headerData + payload)
|
||||
except Exception, err:
|
||||
if not 'Bad file descriptor' in err:
|
||||
printLock.acquire()
|
||||
sys.stderr.write('sock.send error: %s\n' % err)
|
||||
printLock.release()
|
||||
#if not 'Bad file descriptor' in err:
|
||||
printLock.acquire()
|
||||
sys.stderr.write('sock.send error: %s\n' % err)
|
||||
printLock.release()
|
||||
|
||||
#We have received a getdata request from our peer
|
||||
def recgetdata(self, data):
|
||||
|
|
Loading…
Reference in New Issue
Block a user