~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/distroseries.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-03 05:05:39 UTC
  • mfrom: (14514.3.5 new-python-apt)
  • Revision ID: launchpad@pqm.canonical.com-20120103050539-y6ipuo5e9illcrsr
[r=benji][bug=551510] Port to new python-apt API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1081
1081
            # The child doesn't have this package.  Treat that as the
1082
1082
            # parent being newer.
1083
1083
            return False
1084
 
        comparison = apt_pkg.VersionCompare(
 
1084
        comparison = apt_pkg.version_compare(
1085
1085
            dsd.parent_source_version, dsd.source_version)
1086
1086
        return comparison < 0
1087
1087