~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/inmemory.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    )
24
24
from zope.interface import implementer
25
25
 
 
26
from canonical.database.constants import UTC_NOW
 
27
from lp.xmlrpc import faults
26
28
from lp.app.validators import LaunchpadValidationError
27
29
from lp.app.validators.name import valid_name
28
30
from lp.code.bzr import (
52
54
from lp.code.xmlrpc.codehosting import datetime_from_tuple
53
55
from lp.registry.errors import InvalidName
54
56
from lp.registry.interfaces.pocket import PackagePublishingPocket
55
 
from lp.services.database.constants import UTC_NOW
56
57
from lp.services.utils import iter_split
57
58
from lp.services.xmlrpc import LaunchpadFault
58
59
from lp.testing.factory import ObjectFactory
59
 
from lp.xmlrpc import faults
60
60
 
61
61
 
62
62
class FakeStore: