~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/translations/model/pofile.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-08-17 17:21:55 UTC
  • mfrom: (9123.1.2 bug-414832)
  • Revision ID: launchpad@pqm.canonical.com-20090817172155-7xvq0y269wnzg5ww
[r=henninge][ui=none][bug=414832] Fix up broken SQL clause in
        POFileSet.getPOFilesTouchedSince() implementation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1584
1584
        # and its ProductSeries and DistroSeries, if they are defined.
1585
1585
        OtherPOT = ClassAlias(POTemplate)
1586
1586
        OtherPOTJoin = Join(
1587
 
            OtherPOT, And(OtherPOT.name == MatchingPOT.name,
1588
 
                          OtherPOT.id >= MatchingPOT.id))
 
1587
            OtherPOT, And(OtherPOT.name == MatchingPOT.name))
1589
1588
        OtherProductSeries = ClassAlias(ProductSeries)
1590
1589
        OtherProductSeriesJoin = LeftJoin(
1591
1590
            OtherProductSeries,