~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/browser/sourcepackagebuilds.py

  • Committer: Stuart Bishop
  • Date: 2011-09-28 12:49:24 UTC
  • mfrom: (9893.10.1 trivial)
  • mto: This revision was merged to the branch mainline in revision 14178.
  • Revision ID: stuart.bishop@canonical.com-20110928124924-m5a22fymqghw6c5i
Merged trivial into distinct-db-users.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
"""Browser views for source package builds."""
9
9
    'SourcePackageBuildsView',
10
10
    ]
11
11
 
12
 
from lazr.restful.utils import smartquote
13
12
 
14
13
from lp.soyuz.browser.build import BuildRecordsView
15
14
 
32
31
        # this page is because it's unlikely that there will be so
33
32
        # many builds that the listing will be overwhelming.
34
33
        return None
35