~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-21 14:23:38 UTC
  • mfrom: (13737.1.4 tea-and-biscuits)
  • Revision ID: launchpad@pqm.canonical.com-20110821142338-yrqrqi3gjcnc0e0b
[rs=sinzui][bug=829858,673695,312983] Trivial text/link fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
        # should be fixed to use translations_usage.
292
292
        ProductJoin = LeftJoin(Product, And(
293
293
            Product.id == ProductSeries.productID,
294
 
            Product._translations_usage == ServiceUsage.LAUNCHPAD))
 
294
            Product._translations_usage == ServiceUsage.LAUNCHPAD,
 
295
            Product.active == True))
295
296
 
296
297
        ProjectJoin = LeftJoin(
297
298
            ProjectGroup, ProjectGroup.id == Product.projectID)