diff -r 004f9c52f7d8 -r d5efbb20927e ProjectController.py --- a/ProjectController.py Mon Apr 18 19:18:11 2016 +0300 +++ b/ProjectController.py Tue Apr 19 12:15:51 2016 +0300 @@ -1505,7 +1505,11 @@ if connector is not None: if self.StatusTimer is not None: # Start the status Timer - self.StatusTimer.Start(milliseconds=500, oneShot=False) + # Suppress WXDEBUG assertions, as happens by default with wx2.8 + try: + self.StatusTimer.Start(milliseconds=500, oneShot=False) + except: + pass else: if self.StatusTimer is not None: # Stop the status Timer