~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/messaging/rabbit.py

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from transaction._transaction import Status as TransactionStatus
24
24
from zope.interface import implements
25
25
 
26
 
from lp.services.config import config
 
26
from canonical.config import config
27
27
from lp.services.messaging.interfaces import (
28
28
    IMessageConsumer,
29
29
    IMessageProducer,
189
189
        except self.suppressed_errors:
190
190
            pass
191
191
        except Exception:
192
 
            from lp.services.webapp import errorlog
 
192
            from canonical.launchpad.webapp import errorlog
193
193
            errorlog.globalErrorUtility.raising(sys.exc_info())
194
194
 
195
195