~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/buglinktarget.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:
21
21
from zope.interface import providedBy
22
22
from zope.security.interfaces import Unauthorized
23
23
 
24
 
from canonical.config import config
25
24
from lp import _
26
 
from lp.services.searchbuilder import any
27
 
from lp.services.webapp import canonical_url
28
 
from lp.services.webapp.authorization import check_permission
29
 
from lp.services.webapp.publisher import LaunchpadView
30
25
from lp.app.browser.launchpadform import (
31
26
    action,
32
27
    custom_widget,
42
37
    BugTaskSearchParams,
43
38
    IBugTaskSet,
44
39
    )
 
40
from lp.services.config import config
45
41
from lp.services.propertycache import (
46
42
    cachedproperty,
47
43
    get_property_cache,
48
44
    )
 
45
from lp.services.searchbuilder import any
 
46
from lp.services.webapp import canonical_url
 
47
from lp.services.webapp.authorization import check_permission
 
48
from lp.services.webapp.publisher import LaunchpadView
49
49
 
50
50
 
51
51
class BugLinkView(LaunchpadFormView):