Pring out error no matter what the error is

This commit is contained in:
Jonathan Warren 2013-04-01 16:43:51 -04:00
parent 6fcca86fd5
commit fc30ac0b84
1 changed files with 4 additions and 4 deletions

View File

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