~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/externalbugtracker/bugzilla.py

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from zope.component import getUtility
25
25
from zope.interface import implements
26
26
 
 
27
from canonical.config import config
 
28
from lp.services.webapp.url import (
 
29
    urlappend,
 
30
    urlparse,
 
31
    )
27
32
from lp.bugs.externalbugtracker.base import (
28
33
    BugNotFound,
29
34
    BugTrackerAuthenticationError,
48
53
    UNKNOWN_REMOTE_IMPORTANCE,
49
54
    )
50
55
from lp.services import encoding
51
 
from lp.services.config import config
52
56
from lp.services.database.isolation import ensure_no_transaction
53
57
from lp.services.messages.interfaces.message import IMessageSet
54
 
from lp.services.webapp.url import (
55
 
    urlappend,
56
 
    urlparse,
57
 
    )
58
58
 
59
59
 
60
60
class Bugzilla(ExternalBugTracker):