~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/scripts/bzremotecomponentfinder.py

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    HTTPError,
15
15
    urlopen,
16
16
    )
17
 
 
18
17
from BeautifulSoup import BeautifulSoup
 
18
from canonical.launchpad.scripts.logger import log as default_log
19
19
from zope.component import getUtility
20
 
 
21
20
from lp.bugs.interfaces.bugtracker import (
22
21
    BugTrackerType,
23
22
    IBugTrackerSet,
24
23
    )
25
 
from lp.bugs.model.bugtracker import BugTrackerComponent
26
 
from lp.services.database.lpstorm import IStore
27
 
from lp.services.scripts.logger import log as default_log
 
24
from lp.bugs.model.bugtracker import (
 
25
    BugTrackerComponent,
 
26
    )
 
27
from canonical.launchpad.interfaces.lpstorm import IStore
28
28
 
29
29
 
30
30
def dictFromCSV(line):