~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/branchsubscription.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:
15
15
from lazr.restful.utils import smartquote
16
16
from zope.interface import implements
17
17
 
 
18
from lp.app.browser.launchpadform import (
 
19
    action,
 
20
    LaunchpadEditFormView,
 
21
    LaunchpadFormView,
 
22
    )
 
23
from lp.code.enums import BranchSubscriptionNotificationLevel
 
24
from lp.code.interfaces.branchsubscription import IBranchSubscription
18
25
from lp.services.webapp import (
19
26
    canonical_url,
20
27
    LaunchpadView,
25
32
    )
26
33
from lp.services.webapp.interfaces import IPrimaryContext
27
34
from lp.services.webapp.menu import structured
28
 
from lp.app.browser.launchpadform import (
29
 
    action,
30
 
    LaunchpadEditFormView,
31
 
    LaunchpadFormView,
32
 
    )
33
 
from lp.code.enums import BranchSubscriptionNotificationLevel
34
 
from lp.code.interfaces.branchsubscription import IBranchSubscription
35
35
 
36
36
 
37
37
class BranchSubscriptionPrimaryContext: