~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/archive.py

  • Committer: William Grant
  • Date: 2011-08-23 08:33:15 UTC
  • mto: This revision was merged to the branch mainline in revision 13784.
  • Revision ID: william.grant@canonical.com-20110823083315-wzevqv37r4hq4s3l
updateCompletePackageCache and updatePackageCache come along for the ride.

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
from lp.soyuz.model.distributionsourcepackagecache import (
190
190
    DistributionSourcePackageCache,
191
191
    )
192
 
from lp.soyuz.model.distroseriespackagecache import DistroSeriesPackageCache
193
192
from lp.soyuz.model.files import (
194
193
    BinaryPackageFile,
195
194
    SourcePackageReleaseFile,
910
909
 
911
910
    def updateArchiveCache(self):
912
911
        """See `IArchive`."""
 
912
        from lp.soyuz.model.distroseriespackagecache import (
 
913
            DistroSeriesPackageCache)
913
914
        # Compiled regexp to remove puntication.
914
915
        clean_text = re.compile('(,|;|:|\.|\?|!)')
915
916