~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/cache-country-mirrors.py

Clear up a heck of a lot of imports from canonical.launchpad.interfaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from zope.component import getUtility
21
21
 
 
22
from lp.registry.interfaces.distributionmirror import (
 
23
    IDistributionMirrorSet, MirrorContent)
22
24
from lp.services.scripts.base import (
23
25
    LaunchpadScript, LaunchpadScriptFailure)
24
 
from canonical.launchpad.interfaces import (
25
 
    ICountrySet, IDistributionMirrorSet, MirrorContent)
 
26
from lp.services.worlddata.interfaces.country import ICountrySet
26
27
 
27
28
 
28
29
class CacheCountryMirrors(LaunchpadScript):