~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/mail/commands.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:
28
28
    ValidationError,
29
29
    )
30
30
 
31
 
from lp.services.webapp.authorization import check_permission
32
 
from lp.services.webapp.interfaces import ILaunchBag
33
31
from lp.app.errors import (
34
32
    NotFoundError,
35
33
    UserCannotUnsubscribePerson,
77
75
    IBugTaskEmailCommand,
78
76
    )
79
77
from lp.services.messages.interfaces.message import IMessageSet
 
78
from lp.services.webapp.authorization import check_permission
 
79
from lp.services.webapp.interfaces import ILaunchBag
80
80
 
81
81
 
82
82
error_templates = os.path.join(os.path.dirname(__file__), 'errortemplates')