~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/salesforce/proxy.py

  • Committer: William Grant
  • Date: 2011-12-30 08:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230081314-f73f4ozgkzdi5xqb
More stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from zope.component import getUtility
21
21
from zope.interface import implements
22
22
 
 
23
from lp.registry.interfaces.product import IProductSet
23
24
from lp.services.config import config
24
 
from canonical.lazr.timeout import SafeTransportWithTimeout
25
 
from lp.registry.interfaces.product import IProductSet
26
25
from lp.services.propertycache import cachedproperty
27
26
from lp.services.salesforce.interfaces import (
28
27
    ISalesforceVoucher,
33
32
    SVPNotAllowedException,
34
33
    SVPNotFoundException,
35
34
    )
 
35
from lp.services.timeout import SafeTransportWithTimeout
36
36
 
37
37
 
38
38
def fault_mapper(func):