Show
Ignore:
Timestamp:
11/09/07 05:31:49 (1 year ago)
Author:
amcgregor
Message:

Fixes to get 3.0 working again. Now in use on GothCandy? for comment notification. It's in Flux, yo\!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/3.0/turbomail/control.py

    r71 r72  
    6363                                self.stop(force=True) 
    6464                                return 
    65                         setattr(self, t, controller.load()) 
    66                         controller.start() 
     65                        setattr(self, t, controller) 
     66                        if hasattr(getattr(self, t), 'load'): 
     67                                setattr(self, t, getattr(self, t).load()) 
     68                        if hasattr(getattr(self, t), 'start'): 
     69                                getattr(self, t).start() 
    6770                 
    6871                # Load the requested manager and provider.