~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugbranch.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:
24
24
    )
25
25
 
26
26
from lp import _
27
 
from lp.services.webapp import (
28
 
    canonical_url,
29
 
    LaunchpadView,
30
 
    )
31
 
from lp.services.webapp.interfaces import IPrimaryContext
32
27
from lp.app.browser.launchpadform import (
33
28
    action,
34
29
    LaunchpadEditFormView,
40
35
    )
41
36
from lp.code.enums import BranchLifecycleStatus
42
37
from lp.services.propertycache import cachedproperty
 
38
from lp.services.webapp import (
 
39
    canonical_url,
 
40
    LaunchpadView,
 
41
    )
 
42
from lp.services.webapp.interfaces import IPrimaryContext
43
43
 
44
44
 
45
45
class BugBranchPrimaryContext: