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/managers/demand.py

    r68 r72  
    88log = logging.getLogger("turbomail.manager") 
    99 
    10 import turbomail 
     10from turbomail.exceptions import * 
    1111from turbomail.api import Manager 
    1212from turbomail.exceptions import ProviderExhaustedException 
     13from turbomail.control import interface as turbomail 
    1314 
    1415import math, copy 
    1516from Queue import Queue, Empty 
    1617from threading import Event, Thread 
    17 from turbomail.dispatch import Dispatch 
    1818 
    1919__all__ = ['load'] 
     
    8585         
    8686        def worker(self): 
    87                 log.debug("Requesting new provider instance.") 
     87                log.debug("Requesting new provider instance from.") 
    8888                provider = turbomail.provider.new() 
    8989                if not provider: raise ManagerException, "Unable to allocate new provider."