Merge pull request #99 from Atheros1/master

Print out error no matter what the error is
This commit is contained in:
Jonathan Warren 2013-04-01 13:44:35 -07:00
commit 0b5c5b2931
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):