Changeset 3646

Show
Ignore:
Timestamp:
25/10/08 21:49:44 (2 months ago)
Author:
hmeine
Message:

two related errors found using pyflakes; one of them apparently
fixed, one of them turned into a FIXME

Location:
trunk/base/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/src/net/tls.py

    r3541 r3646  
    174174        try: 
    175175            return super(TLSSocket, self)._handle_read() 
    176         except TLSAbruptCloseError, e: 
     176        except tlslite.errors.TLSAbruptCloseError, e: 
    177177            log.error('TLSAbruptCloseError') 
    178178            self._read_signal.emit(None) 
  • trunk/base/src/notifier/reactor.py

    r3293 r3646  
    5858        """ 
    5959        if not kaa.is_mainthread(): 
    60             return kaa.MainThreadCallback(twisted_stop)() 
     60            return kaa.MainThreadCallback(twisted_stop)() # FIXME: where shall twisted_stop come from? 
    6161        kaa.OneShotTimer(kaa.main.stop).start(0) 
    6262        kaa.main.signals['shutdown'].disconnect(self.stop)