~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specificationbranch.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
from zope.interface import implements
17
17
 
18
18
from lp import _
19
 
from lp.services.webapp import canonical_url
20
 
from lp.services.webapp.interfaces import ICanonicalUrlData
21
19
from lp.app.browser.launchpadform import (
22
20
    action,
23
21
    LaunchpadEditFormView,
24
22
    LaunchpadFormView,
25
23
    )
26
24
from lp.blueprints.interfaces.specificationbranch import ISpecificationBranch
 
25
from lp.services.webapp import canonical_url
 
26
from lp.services.webapp.interfaces import ICanonicalUrlData
27
27
 
28
28
 
29
29
class SpecificationBranchURL: