~kees/gtg/lp-562604

« back to all changes in this revision

Viewing changes to GTG/plugins/bugzilla/bugzilla.py

  • Committer: Luca Invernizzi
  • Date: 2010-03-16 02:16:14 UTC
  • Revision ID: invernizzi.l@gmail.com-20100316021614-1mdq2pb5ugb76omo
plugins are ready for python-distutils-extra

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# this program.  If not, see <http://www.gnu.org/licenses/>.
16
16
 
17
17
from urlparse import urlparse
18
 
from server import ServersStore
19
 
from bug import Bug
 
18
 
 
19
from GTG.plugins.bugzilla.server import ServersStore
 
20
from GTG.plugins.bugzilla.bug import Bug
20
21
 
21
22
class pluginBugzilla:
22
23