Changeset 318
- Timestamp:
- 12/20/11 19:00:56 (9 years ago)
- Location:
- trunk/Puzzlebox/Synapse
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Puzzlebox/Synapse/Configuration.py
r305 r318 27 27 28 28 ENABLE_PYSIDE = True 29 #ENABLE_PYSIDE = False 29 30 ENABLE_HCITOOL = False 30 31 -
trunk/Puzzlebox/Synapse/Protocol.py
r313 r318 11 11 12 12 __changelog__ = """\ 13 Last Update: 2011.12. 0413 Last Update: 2011.12.20 14 14 """ 15 15 … … 1142 1142 1143 1143 self.keep_running = False 1144 self.buffer_check_timer.stop() 1145 self.read_buffer_check_timer.stop() 1144 try: 1145 self.buffer_check_timer.stop() 1146 except Exception, e: 1147 if self.DEBUG: 1148 print "ERROR: Protocol failed to call self.buffer_check_timer.stop() in stop():", 1149 print e 1150 1151 try: 1152 self.read_buffer_check_timer.stop() 1153 except Exception, e: 1154 if self.DEBUG: 1155 print "ERROR: Protocol failed to call self.read_buffer_check_timer.stop() in stop():", 1156 print e 1157 1146 1158 self.buffer = '' 1147 1159 … … 1155 1167 1156 1168 if callThreadQuit: 1157 QtCore.QThread.quit(self) 1169 try: 1170 QtCore.QThread.quit(self) 1171 except Exception, e: 1172 if self.DEBUG: 1173 print "ERROR: Protocol failed to call QtCore.QThread.quit(self) in exitThread():", 1174 print e 1158 1175 1159 1176
Note: See TracChangeset
for help on using the changeset viewer.